Skip to content

Commit

Permalink
build: emit Node 10 compatible code
Browse files Browse the repository at this point in the history
  • Loading branch information
malept committed Feb 20, 2020
1 parent 53ce814 commit 53a824a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"@babel/preset-env",
{
"targets": {
"node": "8"
"node": "10"
}
}
],
Expand Down
7 changes: 3 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"target": "es2018",
"outDir": "dist",
"lib": [
"es6",
"dom",
"es7"
"es2018"
],
"sourceMap": true,
"rootDir": ".",
Expand All @@ -21,4 +20,4 @@
"test",
"index.ts"
]
}
}

0 comments on commit 53a824a

Please sign in to comment.