From a5ef87fc61f907781dcfd5dad60364d9aceb915e Mon Sep 17 00:00:00 2001 From: Uri Shaked Date: Fri, 4 Feb 2022 18:55:52 +0200 Subject: [PATCH] chore: enable `noFallthroughCasesInSwitch` in tsconfig --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index d8a86b1..1d97432 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,6 +5,7 @@ "module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */, "outDir": "./dist/cjs" /* Redirect output structure to the directory. */, "strict": true /* Enable all strict type-checking options. */, + "noFallthroughCasesInSwitch": false, "declaration": true, "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */, "skipLibCheck": true /* Skip type checking of declaration files. */,