From c579e95a670e6da30a504bb5deef29039030c35f Mon Sep 17 00:00:00 2001 From: Benjamin Date: Sun, 23 Nov 2025 01:06:16 +0100 Subject: [PATCH] feat(frontend): enable TypeScript strict mode for better type safety Enable strict TypeScript compilation options in the Vue 3 frontend to catch more potential bugs at compile time and improve code quality. --- webapp/tsconfig.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/webapp/tsconfig.json b/webapp/tsconfig.json index fec8c8e..64d86c9 100644 --- a/webapp/tsconfig.json +++ b/webapp/tsconfig.json @@ -5,6 +5,9 @@ { "path": "./tsconfig.node.json" } ], "compilerOptions": { + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, "baseUrl": ".", "paths": { "@/*": ["./src/*"]