diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-05-01 15:03:07 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-05-01 15:03:07 +0200 |
| commit | 1a7b41da7257e1d410e01ca7173c1c6c0cf534b6 (patch) | |
| tree | 0c1ca4fd269a17d170f469e0328b99c23ba0f544 /tsconfig.json | |
| parent | 5ae12afbb94e0b029373a91622280d5a875272db (diff) | |
Add options from svelte tsconfig
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 11 |
1 files changed, 10 insertions, 1 deletions
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 } } |