From a41f13263762ca62ca3887d014e8a4b8a207e59a Mon Sep 17 00:00:00 2001 From: Braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Tue, 5 Jul 2022 18:48:49 +0200 Subject: [PATCH] chore(gui-v2): update tsconfig.json --- packages/nc-gui-v2/tsconfig.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/packages/nc-gui-v2/tsconfig.json b/packages/nc-gui-v2/tsconfig.json index 24befeab40..a67fee9080 100644 --- a/packages/nc-gui-v2/tsconfig.json +++ b/packages/nc-gui-v2/tsconfig.json @@ -2,6 +2,18 @@ "extends": "./.nuxt/tsconfig.json", "compilerOptions": { "strict": true, + "esModuleInterop": true, + "incremental": false, + "skipLibCheck": true, + "moduleResolution": "node", + "resolveJsonModule": true, + "noUnusedLocals": false, + "strictNullChecks": true, + "forceConsistentCasingInFileNames": true, "types": ["@intlify/vite-plugin-vue-i18n/client"] - } + }, + "exclude": [ + "node_modules", + "dist" + ] }