From 1f805c5dc2cbebd174f39e61d819b5dfc9a71a4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Molakvo=C3=A6=20=28skjnldsv=29?= Date: Thu, 2 Apr 2020 10:53:41 +0200 Subject: [PATCH] Remove unneeded babel config variable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ (skjnldsv) --- babel.config.js | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/babel.config.js b/babel.config.js index aeaa21291a..c48171c838 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, - } - ] - ] -}; + }, + ], + ], +}