Skip to content

Commit

Permalink
support es2018 compile target
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjgoss committed Feb 26, 2021
1 parent 38e7282 commit 964118f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"compilerOptions": {
"esModuleInterop": true,
"lib": ["es2017"],
"lib": ["es2018"],
"module": "commonjs",
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"resolveJsonModule": true,
"sourceMap": true,
"target": "es2017",
"target": "es2018",
"typeRoots": [
"./node_modules/@types",
"./src/types"
Expand Down

0 comments on commit 964118f

Please sign in to comment.