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:
parent
83a400687e
commit
81d9f0fdd2
|
|
@ -12,8 +12,8 @@
|
|||
"noEmit": true,
|
||||
"jsx": "react-jsx",
|
||||
"strict": true,
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedParameters": true,
|
||||
"noUnusedLocals": false,
|
||||
"noUnusedParameters": false,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
|
|
|
|||
Loading…
Reference in New Issue