diff --git a/frontend/package.json b/frontend/package.json index ccae98cc..8f749404 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -6,7 +6,7 @@ "scripts": { "start": "vite --host", "build": "vite build --mode prod", - "lint": "eslint .", + "lint": "eslint . --cache --cache-location ./node_modules/.cache/eslint/", "preview": "vite preview", "test": "jest", "test:watch": "jest --watch", diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index f5dd9815..b983964f 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -8,6 +8,8 @@ "moduleResolution": "node", "esModuleInterop": true, "skipLibCheck": true, + "incremental": true, + "tsBuildInfoFile": "./node_modules/.cache/tsc/tsconfig.tsbuildinfo", "strict": true, "forceConsistentCasingInFileNames": true, "baseUrl": "./",