From c0436dc2acc5387920d34cf74905bf825ef7d8b2 Mon Sep 17 00:00:00 2001 From: Felipe Coutinho Date: Sun, 26 Apr 2026 22:58:09 +0000 Subject: [PATCH] =?UTF-8?q?fix(tsconfig):=20remover=20baseUrl=20para=20evi?= =?UTF-8?q?tar=20erro=20de=20depreca=C3=A7=C3=A3o=20no=20TS=207?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A remoção de "ignoreDeprecations": "6.0" no commit anterior reabriu o erro TS5101 sobre baseUrl. Como moduleResolution: bundler resolve os paths relativos ao próprio tsconfig.json, baseUrl é redundante e pode ser removido. Co-Authored-By: Claude Opus 4.7 --- tsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 5faf7d4..7ffc5ff 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,5 @@ { "compilerOptions": { - "baseUrl": ".", "target": "ES2022", "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true,