diff --git a/tsconfig.app.json b/tsconfig.app.json index 089e8b5..0034770 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -7,5 +7,5 @@ "types": [] }, "include": ["src/**/*.ts", "src/**/*.tsx"], - "exclude": ["src/**/*.spec.ts", "src/**/*.test.ts"] -} + "exclude": ["src/**/*.spec.ts", "src/**/*.test.ts", "dist", "node_modules"] +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index da5cc63..13fe968 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,4 @@ { - "include": ["src"], "files": [], "references": [ { @@ -20,8 +19,7 @@ "moduleResolution": "bundler", "allowImportingTsExtensions": false, "verbatimModuleSyntax": true, - "noEmit": true, - + /* Linting */ "skipLibCheck": true, "strict": true, @@ -29,10 +27,9 @@ "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, "noUncheckedSideEffectImports": true, - "baseUrl": ".", + "baseUrl": ".", "paths": { - "@/*": ["./src/*", "vite-env.d.ts"] + "@/*": ["./src/*"] } - } -} +} \ No newline at end of file diff --git a/tsconfig.node.json b/tsconfig.node.json index f10487f..37acf21 100644 --- a/tsconfig.node.json +++ b/tsconfig.node.json @@ -11,7 +11,8 @@ "./src/*" ] }, - "noEmit": false, + "noEmit": false }, - "include": ["vite.config.ts"] + "include": ["vite.config.ts"], + "exclude": ["dist", "node_modules"] }