Skip to content

Commit

Permalink
fix(typescript): iterable maps only available in ES2015 or higher #2
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael committed Oct 11, 2022
1 parent 08c76a0 commit b31b833
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,8 +1,8 @@
{
"compilerOptions": {
"lib": ["ES2015", "DOM"],
"lib": ["ES2015", "DOM", "ES2015.Iterable", "DOM.Iterable"],
"module": "CommonJS",
"target": "ES5",
"target": "ES2015",
"moduleResolution": "Node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
Expand Down

0 comments on commit b31b833

Please sign in to comment.