Disable unused in tsconfig temporarily

This commit is contained in:
Mikunj 2020-06-09 09:01:23 +10:00
parent e9983099a9
commit 4139144b73

View file

@ -26,8 +26,8 @@
"strict": true, // Enable all strict type-checking options.
"skipLibCheck": true,
// Additional Checks
"noUnusedLocals": true, // Report errors on unused locals.
"noUnusedParameters": true, // Report errors on unused parameters.
"noUnusedLocals": false, // Report errors on unused locals. Loki - Enable this after refactor
"noUnusedParameters": false, // Report errors on unused parameters. Loki - Enable this after refactor
"noImplicitReturns": true, // Report error when not all code paths in function return a value.
"noFallthroughCasesInSwitch": true, // Report errors for fallthrough cases in switch statement.