From c08a4c7bd67d822dc29f324c8031c51a48384a55 Mon Sep 17 00:00:00 2001 From: alorig <220087330+alorig@users.noreply.github.com> Date: Sun, 9 Nov 2025 22:36:45 +0500 Subject: [PATCH] as --- frontend/package.json | 4 +++- frontend/tsconfig.app.json | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) 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 },