-
Notifications
You must be signed in to change notification settings - Fork 11
/
tsconfig.json
42 lines (42 loc) · 1.3 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
38
39
40
41
42
{
"compilerOptions": {
"module": "commonjs",
"target": "esnext",
"lib": ["dom", "esnext"],
"strict": true,
"noEmit": true,
"skipLibCheck": true,
"isolatedModules": true,
"esModuleInterop": true,
"noUnusedLocals": false,
"resolveJsonModule": true,
"jsx": "preserve",
"baseUrl": ".",
"paths": {
"@api": ["./src/api/index"],
"@api/*": ["./src/api/*"],
"@components": ["./src/components/index"],
"@components/*": ["./src/components/*"],
"@contexts": ["./src/contexts/index"],
"@contexts/*": ["./src/contexts/*"],
"@helpers": ["./src/helpers/index"],
"@helpers/*": ["./src/helpers/*"],
"@hooks": ["./src/hooks/index"],
"@hooks/*": ["./src/hooks/*"],
"@images": ["./src/images/index"],
"@images/*": ["./src/images/*"],
"@mocks": ["./src/mocks/index"],
"@mocks/*": ["./src/mocks/*"],
"@pages": ["./src/pages/index"],
"@pages/*": ["./src/pages/*"],
"@styles": ["./src/styles/index"],
"@styles/*": ["./src/styles/*"],
"@templates": ["./src/templates/index"],
"@templates/*": ["./src/templates/*"],
"@utils": ["./src/utils/index"],
"@utils/*": ["./src/utils/*"],
"@static/*": ["./static/*"]
}
},
"exclude": ["node_modules", "public", ".cache"]
}