From f459ed6ee00275397b537b64f3417cfa7543fb82 Mon Sep 17 00:00:00 2001 From: baarkerlounger Date: Wed, 16 Mar 2022 15:59:12 +0000 Subject: [PATCH] Babel target attempt 2 --- .browserslistrc | 2 ++ babel.config.js | 8 ++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) 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' + ] } } ]