-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
37 lines (37 loc) · 1.11 KB
/
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
34
35
36
37
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"outDir": "build",
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"types": ["vite/client"],
"paths": {
"$QWER": ["./QWER"],
"$QWER/*": ["./QWER/*"],
"$lib": ["./src/lib"],
"$lib/*": ["./src/lib/*"],
"$generated": ["./src/generated"],
"$generated/*": ["./src/generated/*"],
"$stores": ["./src/lib/stores"],
"$stores/*": ["./src/lib/stores/*"],
"$config": ["./user/config"],
"$config/*": ["./user/config/*"],
"$assets": ["./user/assets"],
"$assets/*": ["./user/assets/*"],
"$custom": ["./user/custom"],
"$custom/*": ["./user/custom/*"],
"$static": ["./static"],
"$static/*": ["./static/*"],
"$i18n": ["./src/i18n"],
"$i18n/*": ["./src/i18n/*"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "build/**/*", "src/lib/template/**/*", "src/generated/**/*"]
}