From 4c4f1ecd80f1c874b53c89cf85993906efa0d5d7 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Sat, 9 Nov 2024 16:42:52 -0600 Subject: [PATCH] tsconfig: enable noFallthroughCasesInSwitch & noUncheckedSideEffectImports --- tsconfig.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index bda772735..a219990ad 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,6 +11,8 @@ "allowJs": true, "isolatedModules": true, "noUnusedLocals": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true, "moduleResolution": "Bundler", "resolveJsonModule": true, "esModuleInterop": true,