config: disable unused variables warnings in tsconfig

- Set noUnusedLocals to false
- Set noUnusedParameters to false
- Prevent TypeScript from flagging unused variables as errors
This commit is contained in:
hosseintaromi 2025-07-29 09:49:38 +03:30
parent 83a400687e
commit 81d9f0fdd2
1 changed files with 2 additions and 2 deletions

View File

@ -12,8 +12,8 @@
"noEmit": true,
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"baseUrl": ".",
"paths": {