From 72dc0c5d78ff135203948825ecaafa815fd4548a Mon Sep 17 00:00:00 2001 From: baarkerlounger Date: Wed, 16 Mar 2022 12:59:12 +0000 Subject: [PATCH] Set babel target attempt 1 --- babel.config.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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),