-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 848 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 848 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
{
"compilerOptions": {
"target": "ESNext",
"allowJs": true,
"baseUrl": ".",
"esModuleInterop": true,
"jsx": "react",
"moduleResolution": "Node",
"module": "ESNext",
"noEmit": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"paths": {
"@assets/*": ["client/assets/*"],
"@components/*": ["client/components/*"],
"@config": ["config/index"],
"@constants": ["constants/index"],
"@context": ["client/context/index"],
"@context/*": ["client/context/*"],
"@helpers/*": ["client/helpers/*"],
"@hooks/*": ["client/hooks/*"],
"@routes": ["client/routes/index"],
"@routes/*": ["client/routes/*"],
"@styles/*": ["client/styles/*"],
"test-utils": ["test/test-utils"]
}
},
"include": ["client", "config", "server"]
}