diff --git a/frontend/package.json b/frontend/package.json index 8f2d7258..396522d8 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -5,7 +5,9 @@ "type": "module", "scripts": { "dev": "vite", - "build": "tsc -b && vite build", + "build": "vite build", + "build:check": "tsc -b && vite build", + "type-check": "tsc -b --noEmit", "lint": "eslint .", "preview": "vite preview" }, diff --git a/frontend/tsconfig.app.json b/frontend/tsconfig.app.json index 358ca9ba..a67d9626 100644 --- a/frontend/tsconfig.app.json +++ b/frontend/tsconfig.app.json @@ -17,8 +17,8 @@ /* Linting */ "strict": true, - "noUnusedLocals": true, - "noUnusedParameters": true, + "noUnusedLocals": false, + "noUnusedParameters": false, "noFallthroughCasesInSwitch": true, "noUncheckedSideEffectImports": true },