Skip to content

Commit

Permalink
fix: stop transpiling async/await
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drop support for Node < 16
  • Loading branch information
jedwards1211 committed Nov 13, 2024
1 parent d7dbe27 commit c48c340
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion toolchain.config.cjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-env node, es2018 */
module.exports = {
cjsBabelEnv: { forceAllTransforms: true },
cjsBabelEnv: { targets: { node: 16 } },
esmBabelEnv: { targets: { node: 16 } },
// outputEsm: false, // disables ESM output (default: true)
buildIgnore: [],
Expand Down

0 comments on commit c48c340

Please sign in to comment.