-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathtsconfig.json
More file actions
41 lines (41 loc) · 921 Bytes
/
tsconfig.json
File metadata and controls
41 lines (41 loc) · 921 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"lib": [
"ESNext",
"DOM",
"DOM.Iterable"
],
"types": [
"vite/client",
"node"
],
"noEmit": true,
"isolatedModules": true,
"skipLibCheck": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"allowImportingTsExtensions": true,
"paths": {
"@stores": ["./src/lib/stores"],
"@utils": ["./src/lib/utils"],
"@modules/*": ["./src/lib/modules/*"],
"@components/*": ["./src/components/*"],
"@features/*": ["./src/features/*"]
}
},
"include": [
"src",
"netlify",
"api"
]
}