diff --git a/tsconfig.app.json b/tsconfig.app.json index 3add82f..4849bc5 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -1,31 +1,35 @@ { "compilerOptions": { - "types": ["vitest/globals"], + "types": [ + "vitest/globals" + ], "target": "ES2020", "useDefineForClassFields": true, - "lib": ["ES2020", "DOM", "DOM.Iterable"], + "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, "noUnusedLocals": false, "noUnusedParameters": false, "noImplicitAny": false, "noFallthroughCasesInSwitch": false, - - "baseUrl": ".", "paths": { - "@/*": ["./src/*"] + "@/*": [ + "./src/*" + ] } }, - "include": ["src"] -} + "include": [ + "src" + ] +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 2518773..488647b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,10 +1,18 @@ { "files": [], - "references": [{ "path": "./tsconfig.app.json" }, { "path": "./tsconfig.node.json" }], + "references": [ + { + "path": "./tsconfig.app.json" + }, + { + "path": "./tsconfig.node.json" + } + ], "compilerOptions": { - "baseUrl": ".", "paths": { - "@/*": ["./src/*"] + "@/*": [ + "./src/*" + ] }, "noImplicitAny": false, "noUnusedParameters": false, @@ -13,4 +21,4 @@ "noUnusedLocals": false, "strictNullChecks": false } -} +} \ No newline at end of file