aboutsummaryrefslogtreecommitdiffstats
path: root/babel.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'babel.config.js')
-rw-r--r--babel.config.js11
1 files changed, 5 insertions, 6 deletions
diff --git a/babel.config.js b/babel.config.js
index aeaa21291ad..c48171c8385 100644
--- a/babel.config.js
+++ b/babel.config.js
@@ -1,16 +1,15 @@
module.exports = {
plugins: [
'@babel/plugin-syntax-dynamic-import',
- ['@babel/plugin-proposal-class-properties', { loose: true }]
+ ['@babel/plugin-proposal-class-properties', { loose: true }],
],
presets: [
[
'@babel/preset-env',
{
modules: false,
- corejs: 3,
useBuiltIns: false,
- }
- ]
- ]
-};
+ },
+ ],
+ ],
+}