-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 811 Bytes
/
tsconfig.json
File metadata and controls
27 lines (27 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"extends": "@tsconfig/svelte/tsconfig.json",
"compilerOptions": {
"target": "esnext",
"useDefineForClassFields": true,
"module": "esnext",
"resolveJsonModule": true,
"allowJs": true,
"checkJs": true,
"isolatedModules": true,
"ignoreDeprecations": "5.0",
"moduleResolution": "node",
"importsNotUsedAsValues": "preserve",
"paths": {
"$stores/*": ["./src/stores/*"],
"$ts/*": ["./src/ts/*"],
"$types/*": ["./src/types/*"],
"$assets/*": ["./src/assets/*"],
"$state/*": ["./src/state/*"],
"$lib/*": ["./src/lib/*"],
"$css/*": ["./src/css/*"],
"$apps/*": ["./src/apps/*"]
}
},
"include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.js", "src/**/*.svelte"],
"references": [{ "path": "./tsconfig.node.json" }]
}