diff --git a/tsconfig.app.json b/tsconfig.app.json index 3add82f..51f581d 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -1,31 +1,35 @@ { "compilerOptions": { - "types": ["vitest/globals"], - "target": "ES2020", - "useDefineForClassFields": true, - "lib": ["ES2020", "DOM", "DOM.Iterable"], - "module": "ESNext", - "skipLibCheck": true, - - /* Bundler mode */ - "moduleResolution": "bundler", "allowImportingTsExtensions": true, "isolatedModules": true, - "moduleDetection": "force", - "noEmit": true, "jsx": "react-jsx", - - /* Linting */ - "strict": false, + "lib": [ + "ES2020", + "DOM", + "DOM.Iterable" + ], + "module": "ESNext", + "moduleDetection": "force", + "moduleResolution": "bundler", + "noEmit": true, + "noFallthroughCasesInSwitch": false, + "noImplicitAny": false, "noUnusedLocals": false, "noUnusedParameters": false, - "noImplicitAny": false, - "noFallthroughCasesInSwitch": false, - - "baseUrl": ".", "paths": { - "@/*": ["./src/*"] - } + "@/*": [ + "./src/*" + ] + }, + "skipLibCheck": true, + "strict": false, + "target": "ES2020", + "types": [ + "vitest/globals" + ], + "useDefineForClassFields": true }, - "include": ["src"] -} + "include": [ + "src" + ] +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 2518773..6b68d80 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,16 +1,24 @@ { - "files": [], - "references": [{ "path": "./tsconfig.app.json" }, { "path": "./tsconfig.node.json" }], "compilerOptions": { - "baseUrl": ".", - "paths": { - "@/*": ["./src/*"] - }, - "noImplicitAny": false, - "noUnusedParameters": false, - "skipLibCheck": true, "allowJs": true, + "noImplicitAny": false, "noUnusedLocals": false, + "noUnusedParameters": false, + "paths": { + "@/*": [ + "./src/*" + ] + }, + "skipLibCheck": true, "strictNullChecks": false - } -} + }, + "files": [], + "references": [ + { + "path": "./tsconfig.app.json" + }, + { + "path": "./tsconfig.node.json" + } + ] +} \ No newline at end of file