-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
33 lines (33 loc) · 964 Bytes
/
tsconfig.json
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
28
29
30
31
32
33
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"baseUrl": ".",
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"ignoreDeprecations": "5.0",
"module": "esnext",
"moduleResolution": "Node",
"paths": {
"$components": ["./src/lib/components/"],
"$components/*": ["./src/lib/components/*"],
"$css": ["./src/lib/assets/css/"],
"$css/*": ["./src/lib/assets/css/*"],
"$json": ["./src/lib/assets/json/"],
"$json/*": ["./src/lib/assets/json/*"],
"$lib": ["./src/lib"],
"$lib/*": ["./src/lib/*"],
"$routes": ["./src/routes"],
"$routes/*": ["./src/routes/*"],
"$src": ["./src/"],
"$src/*": ["./src/*"],
"$utils": ["./src/lib/utils/"],
"$utils/*": ["./src/lib/utils/*"]
},
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true
}
}