diff --git a/.changeset/salty-ideas-own.md b/.changeset/salty-ideas-own.md new file mode 100644 index 00000000..4eaae97e --- /dev/null +++ b/.changeset/salty-ideas-own.md @@ -0,0 +1,5 @@ +--- +'@e2b/code-interpreter': minor +--- + +Update JS SDK target to es2017 diff --git a/js/tsup.config.js b/js/tsup.config.js index 80616774..c63b850f 100644 --- a/js/tsup.config.js +++ b/js/tsup.config.js @@ -2,7 +2,7 @@ import { defineConfig } from 'tsup' export default defineConfig({ minify: false, - target: ['es2015'], + target: ['es2017'], sourcemap: true, dts: true, format: ['esm', 'cjs'],