From 6fcec4fdf2a29c6bce8b508a05a61d35597fafd5 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 16 Oct 2021 16:31:45 -0400 Subject: [PATCH] fix: es2020 bundle to es5 closes #7759 --- rollup.config.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/rollup.config.js b/rollup.config.js index 1c1df27268..cc709efe28 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -68,10 +68,7 @@ const outputs = [ babelHelpers: 'bundled', presets: [ [ - '@babel/env', - { - targets: 'defaults and not IE 11' - } + '@babel/preset-env', ], '@babel/typescript' ]