Skip to content

Commit

Permalink
Update tsconfig.json to ES2019, to match the the target we use for …
Browse files Browse the repository at this point in the history
…ESM builds with `esbuild`.
  • Loading branch information
lgarron committed Nov 15, 2022
1 parent 67eb4c9 commit 8e72298
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@
"noImplicitReturns": true,
"noUnusedLocals": true,
"moduleResolution": "node",
"target": "es2020",
"target": "es2019",
"outDir": "dist/types"
},
"include": ["src/**/*"]
"include": [
"src/**/*"
]
}

0 comments on commit 8e72298

Please sign in to comment.