Skip to content

Commit

Permalink
Merge pull request #289 from robcresswell/fix/correct-es-target-for-n…
Browse files Browse the repository at this point in the history
…ode-10

fix: correct node target for node 10
  • Loading branch information
robcresswell authored Mar 21, 2020
2 parents 9573fb9 + ec2089c commit 9a2b094
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,7 +1,7 @@
{
"compilerOptions": {
"target": "es2015",
"module": "esnext",
"target": "es2018",
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
"noUnusedLocals": true,
Expand Down

0 comments on commit 9a2b094

Please sign in to comment.