Skip to content

Commit

Permalink
fix(tsconfig): use es7 target rather than es2021 (#11)
Browse files Browse the repository at this point in the history
had problems compiling interface when importing this library with es2021
  • Loading branch information
cajubelt authored Sep 6, 2022
1 parent 83cb2a7 commit f3d4fd6
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
Expand Up @@ -11,8 +11,8 @@
"baseUrl": ".",
"sourceMap": true,
"strict": true,
"target": "es2021",
"lib": ["es2021"],
"target": "es2017",
"lib": ["es7", "es2017"],
"skipLibCheck": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
Expand Down

0 comments on commit f3d4fd6

Please sign in to comment.