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.
This commit is contained in:
Benjamin
2025-11-23 01:06:16 +01:00
parent eecb2565bc
commit c579e95a67

View File

@@ -5,6 +5,9 @@
{ "path": "./tsconfig.node.json" }
],
"compilerOptions": {
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]