From: Ruben Beltran del Rio Date: Sun, 1 May 2022 13:03:07 +0000 (+0200) Subject: Add options from svelte tsconfig X-Git-Url: https://git.r.bdr.sh/rbdr/forum/commitdiff_plain/1a7b41da7257e1d410e01ca7173c1c6c0cf534b6?ds=sidebyside Add options from svelte tsconfig --- diff --git a/tsconfig.json b/tsconfig.json index 2dcd4a5..61c17fe 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,16 @@ { "extends": "./.svelte-kit/tsconfig.json", "compilerOptions": { + "moduleResolution": "node", + "target": "es2017", + "importsNotUsedAsValues": "error", "resolveJsonModule": true, - "esModuleInterop": true + "preserveValueImports": true, + "isolatedModules": true, + "sourceMap": true, + "strict": false, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true } }