-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsconfig.json
More file actions
executable file
·29 lines (29 loc) · 901 Bytes
/
Copy pathjsconfig.json
File metadata and controls
executable file
·29 lines (29 loc) · 901 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": {
"baseUrl": ".",
"paths": {
"@/": ["./src/"],
"@/filters": ["./src/filters/index"],
"@/consts": ["./src/consts/index"],
"@/components/*": ["./src/components/*"],
"@/api": ["./src/api/index"],
"@/api/*": ["./src/api/*"],
"@/view/*": ["./src/view/*"],
"@/store": ["./src/store/index"],
"@/common/*": ["./src/common/*"],
"@/mixins": ["./src/mixins/index"],
"@/mixins/*": ["./src/mixins/*"],
"@/router": ["./src/router/index"],
"@/router/*": ["./src/router/*"],
"@/utils": ["./src/utils/index"],
"@/utils/fetch": ["./src/utils/fetch"],
"@/utils/*": ["./src/utils/*"]
},
"allowArbitraryExtensions": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"jsx": "preserve"
},
"include": ["./src"],
"exclude": ["dist", "node_modules"]
}