From 303b8bedd4b3f7e1d428561cd4baaf1c585c98b9 Mon Sep 17 00:00:00 2001 From: Felipe Coutinho Date: Sun, 29 Mar 2026 13:44:17 +0000 Subject: [PATCH] chore(config): limpeza de tsconfig.json e .vscode/settings.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reformata arrays no tsconfig para multi-line. Remove configurações obsoletas do .vscode (explorerExclude.backup, eslint.enable, typescript.preferences.organizeImportsCollation). Co-Authored-By: Claude Sonnet 4.6 --- .vscode/settings.json | 5 +---- tsconfig.json | 17 +++++++++++++---- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 67420df..441f75c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -12,7 +12,6 @@ "**/.next": true, ".next": true }, - "explorerExclude.backup": {}, "editor.defaultFormatter": "biomejs.biome", "editor.formatOnSave": true, "editor.codeActionsOnSave": { @@ -25,11 +24,9 @@ "[json]": { "editor.defaultFormatter": "biomejs.biome" }, - "eslint.enable": false, "prettier.enable": false, - "typescript.preferences.organizeImportsCollation": "ordinal", "editor.fontSize": 15, "[jsonc]": { "editor.defaultFormatter": "vscode.json-language-features" } -} +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 47be581..d94afb6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,11 @@ "ignoreDeprecations": "6.0", "baseUrl": ".", "target": "ES2017", - "lib": ["dom", "dom.iterable", "esnext"], + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], "allowJs": true, "skipLibCheck": true, "strict": true, @@ -21,7 +25,10 @@ } ], "paths": { - "@/*": ["./src/*", "./*"] + "@/*": [ + "./src/*", + "./*" + ] } }, "include": [ @@ -35,5 +42,7 @@ ".next/types/**/*.ts", ".next/dev/types/**/*.ts" ], - "exclude": ["node_modules"] -} + "exclude": [ + "node_modules" + ] +} \ No newline at end of file