forked from shirodkarpushkar/vue-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsconfig.json
85 lines (85 loc) · 2.23 KB
/
jsconfig.json
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"baseUrl": ".",
"include": ["src/**/*", "tests/**/*"],
"compilerOptions": {
"baseUrl": ".",
"target": "esnext",
"module": "es2015",
"paths": {
"@/*": ["./*"],
"@": [
"./index.js",
"./index.json",
"./index.vue",
"./index.scss",
"./index.css"
],
"@src/*": ["src/*"],
"@src": [
"src/index.js",
"src/index.json",
"src/index.vue",
"src/index.scss",
"src/index.css"
],
"@router/*": ["src/router/*"],
"@router": [
"src/router/index.js",
"src/router/index.json",
"src/router/index.vue",
"src/router/index.scss",
"src/router/index.css"
],
"@views/*": ["src/router/views/*"],
"@views": [
"src/router/views/index.js",
"src/router/views/index.json",
"src/router/views/index.vue",
"src/router/views/index.scss",
"src/router/views/index.css"
],
"@layouts/*": ["src/router/layouts/*"],
"@layouts": [
"src/router/layouts/index.js",
"src/router/layouts/index.json",
"src/router/layouts/index.vue",
"src/router/layouts/index.scss",
"src/router/layouts/index.css"
],
"@components/*": ["src/components/*"],
"@components": [
"src/components/index.js",
"src/components/index.json",
"src/components/index.vue",
"src/components/index.scss",
"src/components/index.css"
],
"@assets/*": ["src/assets/*"],
"@assets": [
"src/assets/index.js",
"src/assets/index.json",
"src/assets/index.vue",
"src/assets/index.scss",
"src/assets/index.css"
],
"@utils/*": ["src/utils/*"],
"@utils": [
"src/utils/index.js",
"src/utils/index.json",
"src/utils/index.vue",
"src/utils/index.scss",
"src/utils/index.css"
],
"@state/*": ["src/state/*"],
"@state": [
"src/state/index.js",
"src/state/index.json",
"src/state/index.vue",
"src/state/index.scss",
"src/state/index.css"
],
"@design/*": ["src/design/index.scss/*"],
"@design": ["src/design/index.scss"]
}
}
}