-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathjsconfig.json
More file actions
19 lines (19 loc) · 829 Bytes
/
jsconfig.json
File metadata and controls
19 lines (19 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"compilerOptions": {
"jsx": "react",
"baseUrl": ".",
"paths": {
"@learning.components/*": ["./frontend/learning/components/*"],
"@learning.hooks/*": ["./frontend/learning/hooks/*"],
"@learning.styles/*": ["./frontend/learning/styles/*"],
"@learning.services/*": ["./frontend/learning/services/*"],
"@interfaces/*": ["./frontend/interfaces/*"],
"@assignment.components/*": ["./frontend/assignment/components/*"],
"@assignment.hooks/*": ["./frontend/assignment/hooks/*"],
"@assignment.styles/*": ["./frontend/assignment/styles/*"],
"@assignment.services/*": ["./frontend/assignment/services/*"],
"@utils/*": ["./frontend/utils/*"]
}
},
"exclude": ["node_modules"]
}