Skip to content

Commit 2b6d202

Browse files
committed
set tsconfig lib and target to es6
1 parent ddbfe34 commit 2b6d202

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed
Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
{
2-
"compilerOptions": {
3-
"target": "ES2015",
4-
"module": "commonjs",
5-
"strict": true,
6-
"esModuleInterop": true,
7-
"skipLibCheck": true,
8-
"forceConsistentCasingInFileNames": true
9-
},
10-
"$schema": "https://json.schemastore.org/tsconfig",
11-
"display": "Recommended"
12-
}
2+
"compilerOptions": {
3+
"lib": [
4+
"es6"
5+
],
6+
"target": "es6",
7+
"module": "commonjs",
8+
"strict": true,
9+
"esModuleInterop": true,
10+
"skipLibCheck": true,
11+
"forceConsistentCasingInFileNames": true
12+
},
13+
"$schema": "https://json.schemastore.org/tsconfig",
14+
"display": "Recommended"
15+
}

0 commit comments

Comments
 (0)