-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathjsconfig.json
35 lines (35 loc) · 875 Bytes
/
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
{
"baseUrl": ".",
"include": ["src/**/*", "tests/**/*"],
"compilerOptions": {
"baseUrl": ".",
"target": "esnext",
"module": "es2015",
"paths": {
"@/*": ["src/*"],
"@": [
"src/index.js",
"src/index.json",
"src/index.vue",
"src/index.scss",
"src/index.css"
],
"@@/*": ["node_modules/ibuild-portal-lte/src/*"],
"@@": [
"node_modules/ibuild-portal-lte/src/index.js",
"node_modules/ibuild-portal-lte/src/index.json",
"node_modules/ibuild-portal-lte/src/index.vue",
"node_modules/ibuild-portal-lte/src/index.scss",
"node_modules/ibuild-portal-lte/src/index.css"
],
"@root/*": ["./*"],
"@root": [
"./index.js",
"./index.json",
"./index.vue",
"./index.scss",
"./index.css"
]
}
}
}