Skip to content
This repository was archived by the owner on Jul 10, 2019. It is now read-only.

Commit f387368

Browse files
committed
chore(tsconfig.json): update tsconfig
1 parent 36e136d commit f387368

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

tsconfig.json

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,35 @@
22
"compilerOptions": {
33
"allowJs": true,
44
"baseUrl": ".",
5+
"esModuleInterop": true,
56
"experimentalDecorators": true,
67
"lib": [
7-
"dom",
8-
"es2015",
9-
"es2017"
8+
"esnext",
9+
"esnext.asynciterable",
10+
"dom"
1011
],
1112
"module": "esnext",
1213
"moduleResolution": "node",
13-
"noImplicitThis": true,
1414
"paths": {
1515
"@/*": [
1616
"src/*"
1717
],
1818
"~/*": [
19-
"./*"
20-
],
21-
"*": [
22-
"types/*"
19+
"src/*"
2320
]
2421
},
22+
"removeComments": true,
2523
"sourceMap": true,
2624
"strictNullChecks": true,
27-
"strictPropertyInitialization": false,
28-
"target": "es5",
25+
"noImplicitThis": true,
26+
"target": "esnext",
2927
"types": [
3028
"@types/node",
3129
"@types/jest",
3230
"@types/webpack",
3331
"@nuxt/vue-app"
3432
],
35-
"esModuleInterop": true,
36-
"strict": true,
33+
"strict": false,
3734
"noImplicitAny": false,
3835
"noEmit": true
3936
},
@@ -46,3 +43,4 @@
4643
"stories"
4744
]
4845
}
46+

0 commit comments

Comments
 (0)