From 23acd88ced54ea0406af22aac6ebd56198f3811e Mon Sep 17 00:00:00 2001 From: donpat1to Date: Sat, 25 Oct 2025 13:32:01 +0200 Subject: [PATCH] compiling allowed unused values --- frontend/tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 878f4f8..461e3d8 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -17,8 +17,8 @@ /* Linting */ "strict": true, - "noUnusedLocals": true, - "noUnusedParameters": true, + "noUnusedLocals": false, + "noUnusedParameters": false, "noFallthroughCasesInSwitch": true, /* Path mapping (modern approach) */