From 4139144b7397c15975e01b3bf54d72cda11c326f Mon Sep 17 00:00:00 2001 From: Mikunj Date: Tue, 9 Jun 2020 09:01:23 +1000 Subject: [PATCH] Disable unused in tsconfig temporarily --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index e20210c08..4395415ff 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -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.