From 4a4bac83649c3a134986590f3476baabe860cf46 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Sat, 19 Oct 2024 09:18:53 -0700 Subject: [PATCH] Fix tsconfig. --- tsconfig.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index fe2e3f8..6fb3011 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,6 +9,12 @@ "noEmitOnError": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, + "alwaysStrict": true, + "downlevelIteration": false, + "esModuleInterop": true, + "noErrorTruncation": true, + "noFallthroughCasesInSwitch": true, + "strict": true, "lib": [ "ESNext", "dom" @@ -32,11 +38,5 @@ "exclude": [ "node_modules", "platforms" - ], - "alwaysStrict": true, - "downlevelIteration": false, - "esModuleInterop": true, - "noErrorTruncation": true, - "noFallthroughCasesInSwitch": true, - "strict": true + ] } -- 2.34.1