diff --git a/.browserslistrc b/.browserslistrc deleted file mode 100644 index 3cb84b7ee..000000000 --- a/.browserslistrc +++ /dev/null @@ -1,3 +0,0 @@ -defaults -ie 11 -ie 10 diff --git a/babel.config.js b/babel.config.js index abe4bcb05..ea4f519e7 100644 --- a/babel.config.js +++ b/babel.config.js @@ -18,15 +18,7 @@ module.exports = function(api) { return { presets: [ isTestEnv && [ - '@babel/preset-env', - { - targets: { - node: 'current', - browsers: [ - 'ie >= 10' - ] - } - } + '@babel/preset-env' ], (isProductionEnv || isDevelopmentEnv) && [ '@babel/preset-env', @@ -35,13 +27,7 @@ module.exports = function(api) { useBuiltIns: 'entry', corejs: 3, modules: false, - exclude: ['transform-typeof-symbol'], - targets: { - node: 'current', - browsers: [ - 'ie >= 10' - ] - } + exclude: ['transform-typeof-symbol'] } ] ].filter(Boolean),