From 4ffbf9971adc5b3ec997ca2940baad2292285556 Mon Sep 17 00:00:00 2001 From: Alexander Kadyrov Date: Thu, 28 Nov 2024 01:33:58 +0400 Subject: [PATCH] Extend compiler options --- tsconfig.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 7d543ea..2005818 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,6 +2,11 @@ "compilerOptions": { "target": "ES2020", "lib": ["dom", "dom.iterable", "esnext"], + "noUnusedLocals": true, + "noUnusedParameters": true, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": true, + "noImplicitOverride": true, "allowJs": true, "skipLibCheck": true, "strict": true,