-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
55 lines (55 loc) · 962 Bytes
/
tsconfig.json
File metadata and controls
55 lines (55 loc) · 962 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"jsxImportSource": "solid-js",
"jsx": "preserve",
"strict": true,
"types": [
"solid-start/env",
"@testing-library/jest-dom"
],
"baseUrl": "./src",
"paths": {
"@/*": [
"*"
],
"@/components/*": [
"components/*"
],
"@/pages/*": [
"pages/*"
],
"@/layouts/*": [
"layouts/*"
],
"@/hooks/*": [
"hooks/*"
],
"@/libs/*": [
"libs/*"
],
"@/routes/*": [
"routes/*"
],
"@/stores/*": [
"stores/*"
],
"@/services/*": [
"services/*"
],
"@/entities/*": [
"entities/*"
],
"@/config/*": [
"config/*"
]
}
},
"types": [
"vitest"
]
}