From ab49afd3dbf8e36277478d801daf8313c7c7fdb5 Mon Sep 17 00:00:00 2001 From: Kirk Lin Date: Tue, 16 May 2023 17:39:05 +0800 Subject: [PATCH] fix(projects): tsconfig missing isolatedModules --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 89c5728d..3a99673f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,6 +9,7 @@ "allowSyntheticDefaultImports": true, "jsx": "preserve", "moduleResolution": "node", + "isolatedModules": true, "resolveJsonModule": true, "noUnusedLocals": true, "strictNullChecks": true,