-
Notifications
You must be signed in to change notification settings - Fork 16
/
tsconfig.json
52 lines (52 loc) · 1.09 KB
/
tsconfig.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
{
"compilerOptions": {
"target": "es2019",
"module": "esnext",
"strict": false,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"baseUrl": "./",
"types": [
"webpack-env"
],
"allowJs": true,
"paths": {
"@/*": ["src/*"],
"@images/*": ["src/assets/images/*"],
"@fonts/*": ["src/assets/fonts/*"],
"element-ui": ["node_modules/element-ui-eoi"],
"element-ui/*": ["node_modules/element-ui-eoi/*"]
},
"lib": [
"esnext",
"es2019",
"es2019.object",
"es2018",
"es2018.promise",
"es2017",
"es2017.object",
"es2017.string",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules"
]
}