-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathjsconfig.json
More file actions
29 lines (29 loc) · 805 Bytes
/
jsconfig.json
File metadata and controls
29 lines (29 loc) · 805 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
{
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "Bundler",
"target": "ES2022",
"jsx": "react",
"allowImportingTsExtensions": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "./src",
"paths": {
"@apis/*": ["apis/*"],
"@assets/*": ["assets/*"],
"@components/*": ["components/*"],
"@configs/*": ["configs/*"],
"@constants/*": ["constants/*"],
"@contexts/*": ["contexts/*"],
"@hooks/*": ["hooks/*"],
"@layouts/*": ["layouts/*"],
"@libs/*": ["libs/*"],
"@mocks/*": ["mocks/*"],
"@pages/*": ["pages/*"],
"@routes/*": ["routes/*"],
"@services/*": ["services/*"],
"@utils/*": ["utils/*"]
}
},
"exclude": ["node_modules", "**/node_modules/*"]
}