diff --git a/backend/tsconfig.json b/backend/tsconfig.json index 7a102071..d868830e 100644 --- a/backend/tsconfig.json +++ b/backend/tsconfig.json @@ -9,7 +9,8 @@ "esModuleInterop": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, - "resolveJsonModule": true + "resolveJsonModule": true, + "incremental": true }, "include": ["src/**/*"], "exclude": ["node_modules", "dist"] diff --git a/frontend/tsconfig.app.json b/frontend/tsconfig.app.json index 60a86638..043c080d 100644 --- a/frontend/tsconfig.app.json +++ b/frontend/tsconfig.app.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", + "incremental": true, "target": "ES2022", "useDefineForClassFields": true, "lib": ["ES2022", "DOM", "DOM.Iterable"], diff --git a/frontend/tsconfig.node.json b/frontend/tsconfig.node.json index 8a67f62f..9a176d11 100644 --- a/frontend/tsconfig.node.json +++ b/frontend/tsconfig.node.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", + "incremental": true, "target": "ES2023", "lib": ["ES2023"], "module": "ESNext",