From eabeda924781fd65dc84094e8c914717ef2d5202 Mon Sep 17 00:00:00 2001 From: HexaField Date: Fri, 15 Mar 2024 10:51:57 +1100 Subject: [PATCH] fix tsc --- tsconfig.json | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 34f3256..272b271 100755 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,12 +1,7 @@ { "compilerOptions": { "target": "esnext", - "lib": [ - "esnext", - "dom", - "dom.iterable", - "WebWorker" - ], + "lib": ["esnext", "dom", "dom.iterable", "WebWorker"], "allowJs": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, @@ -21,16 +16,13 @@ "moduleResolution": "node", "sourceMap": true, "jsx": "react", - "isolatedModules": false, + "isolatedModules": true, "experimentalDecorators": true, "allowSyntheticDefaultImports": true, "emitDecoratorMetadata": true, "declaration": true, "outDir": "./lib", - "types": [ - "vite/client", - "mocha" - ], + "types": ["vite/client", "mocha"] }, "exclude": [ "**/node_modules/**"