From 75c3c42750df30a0ccfa2d5f52f4800fdc13eb38 Mon Sep 17 00:00:00 2001 From: sawka Date: Wed, 29 Nov 2023 18:23:47 -0800 Subject: [PATCH] updated tsconfig.json --- tsconfig.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index f49c13b94..ac90ce757 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,10 +1,10 @@ { "include": ["src/**/*", "types/**/*"], + "exclude": ["src/electron/emain.ts"], "compilerOptions": { "target": "es5", "module": "commonjs", - "jsx": "react", - "strict": true, + "jsx": "preserve", "esModuleInterop": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, @@ -12,6 +12,7 @@ "allowSyntheticDefaultImports": true, "resolveJsonModule": true, "isolatedModules": true, - "experimentalDecorators": true + "experimentalDecorators": true, + "downlevelIteration": true } }