From b64ca914f3014a4c1fb66e4a8fbd42f538f769f4 Mon Sep 17 00:00:00 2001 From: CraftyDragon678 Date: Tue, 10 Nov 2020 00:00:54 +0900 Subject: [PATCH] fix: Cannot add property noFallthroughCasesInSwitch, object is not extensible https://github.com/facebook/create-react-app/issues/9429 --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 98e3f0b..a971da2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,6 +19,7 @@ "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, + "noFallthroughCasesInSwitch": true, "types": ["@emotion/core", "node"], "typeRoots": ["./src/types", "./node_modules/@types", "./node_modules"] },