From 959b728965a7b0bc477913fc18647343309bbb32 Mon Sep 17 00:00:00 2001 From: Attila Szeremi Date: Mon, 11 Apr 2022 11:41:50 +0200 Subject: [PATCH] Fix (hack) tsc compiler complaining about isolatedModules... https://github.com/vitejs/vite/issues/5814 https://github.com/vuejs/core/issues/1228 --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 52205ea..3e3dee4 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,7 +8,7 @@ "jsx": "preserve", "sourceMap": true, "resolveJsonModule": true, - "isolatedModules": true, + "isolatedModules": false, "esModuleInterop": true, "lib": ["esnext", "dom"] },