From c1c993c5f68d576778ce24c2c07a17bc6c1fc559 Mon Sep 17 00:00:00 2001 From: Paul D'Ambra Date: Tue, 19 Nov 2024 10:43:55 +0100 Subject: [PATCH] chore: very small change to IE11 bundling (#1536) --- rollup.config.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/rollup.config.js b/rollup.config.js index 648cdd8bb..ef400a705 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -22,9 +22,7 @@ const plugins = (es5) => [ [ '@babel/preset-env', { - targets: es5 - ? '>0.5%, last 2 versions, Firefox ESR, not dead, IE 11' - : '>0.5%, last 2 versions, Firefox ESR, not dead', + targets: es5 ? 'defaults, IE 11' : '>0.5%, last 2 versions, Firefox ESR, not dead', }, ], ],