diff --git a/babel.config.js b/babel.config.js index 4df194934..a43b36428 100644 --- a/babel.config.js +++ b/babel.config.js @@ -21,7 +21,8 @@ module.exports = function(api) { '@babel/preset-env', { targets: { - node: 'current' + node: 'current', + ie: "11" } } ], @@ -32,7 +33,11 @@ module.exports = function(api) { useBuiltIns: 'entry', corejs: 3, modules: false, - exclude: ['transform-typeof-symbol'] + exclude: ['transform-typeof-symbol'], + targets: { + node: 'current', + ie: "11" + } } ] ].filter(Boolean),