Skip to content

Commit 615e266

Browse files
committed
fix redundancy in tsconfig.json
es2017 is a superset of es7, which is a superset of es6. So use es2017 consistently for target and lib.
1 parent 545d632 commit 615e266

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"compilerOptions": {
3-
"target": "ES6",
43
"module": "ES6",
5-
"lib": ["es2017", "es7", "es6", "dom"],
4+
"target": "es2017",
5+
"lib": ["es2017", "dom"],
66
"baseUrl": ".",
77
"rootDir": "lib",
88
"strict": false,

0 commit comments

Comments
 (0)