aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tsconfig.json11
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
}
}