-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsconfig.json
37 lines (37 loc) · 1.29 KB
/
jsconfig.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
{
"compilerOptions": {
"jsx": "react",
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2016",
"module": "esnext",
"baseUrl": "./",
"moduleResolution": "node",
"esModuleInterop": true,
"paths": {
"components": ["./src/components"],
"components/*": ["./src/components/*"],
"data": ["./src/data"],
"data/*": ["./src/data/*"],
"hooks": ["./src/hooks"],
"hooks/*": ["./src/hooks/*"],
"images": ["./src/assets/images"],
"images/*": ["./src/assets/images/*"],
"pages": ["./src/pages"],
"pages/*": ["./src/pages/*"],
"src": ["./src"],
"src/*": ["./src/*"],
"styles": ["./src/styles"],
"styles/*": ["./src/styles/*"],
"svg": ["./src/assets/images/svg"],
"svg/*": ["./src/assets/images/svg/*"],
"utils": ["./src/utils"],
"utils/*": ["./src/utils/*"],
"videos": ["./src/assets/videos"],
"videos/*": ["./src/assets/videos/*"],
"webp": ["./src/assets/images/webp"],
"webp/*": ["./src/assets/images/webp/*"],
},
"checkJs": true,
}
}