diff --git a/.browserslistrc b/.browserslistrc index e94f8140c..3cb84b7ee 100644 --- a/.browserslistrc +++ b/.browserslistrc @@ -1 +1,3 @@ defaults +ie 11 +ie 10 diff --git a/babel.config.js b/babel.config.js index a43b36428..abe4bcb05 100644 --- a/babel.config.js +++ b/babel.config.js @@ -22,7 +22,9 @@ module.exports = function(api) { { targets: { node: 'current', - ie: "11" + browsers: [ + 'ie >= 10' + ] } } ], @@ -36,7 +38,9 @@ module.exports = function(api) { exclude: ['transform-typeof-symbol'], targets: { node: 'current', - ie: "11" + browsers: [ + 'ie >= 10' + ] } } ]