-
-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathjsconfig.json
More file actions
23 lines (23 loc) · 660 Bytes
/
jsconfig.json
File metadata and controls
23 lines (23 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"lib": ["ESNext", "dom"],
"jsx": "react-jsx",
"paths": {
"@assets/*": ["./src/assets/*"],
"@components/*": ["./src/components/*"],
"@features/*": ["./src/features/*"],
"@services/*": ["./src/services/*"],
"@hooks/*": ["./src/hooks/*"],
"@utils/*": ["./src/utils/*"],
"@store/*": ["./src/store/*"]
}
},
"exclude": ["node_modules", "**/node_modules/*", "dist", "dist-*"]
}