-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathjsconfig.json
More file actions
30 lines (30 loc) · 874 Bytes
/
jsconfig.json
File metadata and controls
30 lines (30 loc) · 874 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
{
"allowJs": true,
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"paths": {
"~/*": ["./src/*"],
"@/*": ["./src/*"],
"~~/*": ["./*"],
"@@/*": ["./*"],
"@scope/*": ["./scope/*"],
"@Cloudenv/*": ["./containers/Cloudenv/*"],
"@Compute/*": ["./containers/Compute/*"],
"@Dashboard/*": ["./containers/Dashboard/*"],
"@DB/*": ["./containers/DB/*"],
"@Helm/*": ["./containers/Helm/*"],
"@IAM/*": ["./containers/IAM/*"],
"@K8S/*": ["./containers/K8S/*"],
"@Middleware/*": ["./containers/Middleware/*"],
"@Monitor/*": ["./containers/Monitor/*"],
"@Network/*": ["./containers/Network/*"],
"@Storage/*": ["./containers/Storage/*"]
}
},
"include": [
"./src/**/*",
"./containers/**/*"
],
"exclude": ["node_modules", "dist"]
}