Skip to content

Commit

Permalink
fix: update ts lib config (#680)
Browse files Browse the repository at this point in the history
this enables es2019 features plus others already present in node 12
  • Loading branch information
hugomrdias authored Nov 26, 2020
1 parent 4b4abf6 commit aeca210
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config/tsconfig.aegir.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
"resolveJsonModule": true,
"preserveConstEnums": true,
"removeComments": false,
"target": "ES2018",
"target": "ES2019",
"moduleResolution": "node",
"lib": ["ES2018", "DOM"],
"lib": ["ES2019", "ES2020.Promise", "ES2020.String", "ES2020.BigInt", "DOM", "DOM.Iterable"],
"noEmitOnError": true,
"noEmit": false,
"emitDeclarationOnly": true,
Expand Down

0 comments on commit aeca210

Please sign in to comment.