-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathtsconfig.json
38 lines (38 loc) · 861 Bytes
/
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
{
"compileOnSave": true,
"compilerOptions": {
"module": "ES2015",
"moduleResolution": "node",
"lib": [
"dom",
"es5",
"es2015"
],
// "strict": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"strictNullChecks": true,
"esModuleInterop": true,
"target": "es5",
"sourceMap": true,
"declaration": true,
"declarationDir": "./dist",
"removeComments": false,
"skipLibCheck": true,
"types" : [
"jest",
"vuex"
]
},
"include": [
"src",
"tests",
"examples"
],
"exclude": [
"node_modules"
]
}