Skip to content

Commit

Permalink
build: use es2020 for target as supported environments all support this
Browse files Browse the repository at this point in the history
This specifically means that TypeScript will no longer transpile async/await for us which means
the generated code is easier to work with
  • Loading branch information
ewanharris committed Jul 11, 2024
1 parent 7575bde commit a550de1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"declaration": true,
"target": "es6",
"target": "es2020",
"module": "commonjs",
"noImplicitAny": true,
"strict": true,
Expand Down

0 comments on commit a550de1

Please sign in to comment.