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