aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json24
1 files changed, 24 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..e2af4d7
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,24 @@
+{
+ "extends": "@tsconfig/svelte/tsconfig.json",
+ "compilerOptions": {
+ "baseUrl": ".",
+ "paths": {
+ "@config": ["./src/config.ts"],
+ "@components": ["./src/lib/components/index.ts"],
+ "@motion": ["./src/lib/motion/index.ts"],
+ "@languages": ["./src/lib/languages/index.ts"],
+ "@lib/*": ["./src/lib/*"],
+ "@stores/*": ["./src/lib/stores/*"],
+ "@styles/*": ["./src/lib/styles/*"]
+ },
+ "target": "ESNext",
+ "useDefineForClassFields": true,
+ "module": "ESNext",
+ "resolveJsonModule": true,
+ "allowJs": true,
+ "checkJs": true,
+ "isolatedModules": true
+ },
+ "include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.js", "src/**/*.svelte"],
+ "references": [{ "path": "./tsconfig.node.json" }]
+}