From ad39dc16cad2c721f89875687c37e6271bb6c31c Mon Sep 17 00:00:00 2001 From: Kohei Watanabe Date: Wed, 12 Feb 2020 02:36:45 +0900 Subject: [PATCH] enable noFallthroughCasesInSwitch --- tsconfig.base.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.base.json b/tsconfig.base.json index ce9bcc1..153b708 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -12,6 +12,7 @@ "strictNullChecks": true, "strictFunctionTypes": true, "strictPropertyInitialization": true, + "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noUnusedLocals": true, "noUnusedParameters": true