From 1a7b41da7257e1d410e01ca7173c1c6c0cf534b6 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 1 May 2022 15:03:07 +0200 Subject: Add options from svelte tsconfig --- tsconfig.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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 } } -- cgit