From 016668ce83ea490df1aab9d2908e900182296060 Mon Sep 17 00:00:00 2001 From: Inga Date: Sat, 9 Jul 2022 18:41:27 +0200 Subject: [PATCH] enabled TS strict mode --- tsconfig.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index adb614c..52b08c1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,10 +12,10 @@ "baseUrl": "./", "incremental": true, "skipLibCheck": true, - "strictNullChecks": false, - "noImplicitAny": false, - "strictBindCallApply": false, - "forceConsistentCasingInFileNames": false, - "noFallthroughCasesInSwitch": false + "strict": true, + "noImplicitAny": true, + "strictBindCallApply": true, + "forceConsistentCasingInFileNames": true, + "noFallthroughCasesInSwitch": true } }