From: Chris Duncan Date: Sat, 19 Oct 2024 16:18:53 +0000 (-0700) Subject: Fix tsconfig. X-Git-Url: https://zoso.dev/?a=commitdiff_plain;h=4a4bac83649c3a134986590f3476baabe860cf46;p=nemo-wallet.git Fix tsconfig. --- 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 + ] }