diff --git a/tsconfig.json b/tsconfig.json index fa051167..ecfa8410 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "rootDir": "./src", + "rootDir": "./", "target": "ESNext", "useDefineForClassFields": true, "module": "ESNext", @@ -15,8 +15,9 @@ "noUnusedParameters": true, "noImplicitReturns": true, "forceConsistentCasingInFileNames": true, + "skipLibCheck": true, "types": ["vite/client", "node"] }, - "include": ["src"], - "exclude": ["**/*.test.ts", "node_modules", "tests/**", ".history/**"] + "include": ["src", "tests"], + "exclude": ["node_modules", ".history/**"] }