From 81d9f0fdd2e441863c36cfa196696f0da8f6535a Mon Sep 17 00:00:00 2001 From: hosseintaromi Date: Tue, 29 Jul 2025 09:49:38 +0330 Subject: [PATCH] config: disable unused variables warnings in tsconfig - Set noUnusedLocals to false - Set noUnusedParameters to false - Prevent TypeScript from flagging unused variables as errors --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 5413626..335e6fb 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,8 +12,8 @@ "noEmit": true, "jsx": "react-jsx", "strict": true, - "noUnusedLocals": true, - "noUnusedParameters": true, + "noUnusedLocals": false, + "noUnusedParameters": false, "noFallthroughCasesInSwitch": true, "baseUrl": ".", "paths": {