diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2020-04-02 10:53:41 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2020-04-02 10:57:13 +0200 |
commit | 1f805c5dc2cbebd174f39e61d819b5dfc9a71a4a (patch) | |
tree | 5ddd2f60f7796b5a67a15ee17bc8d93eaa6bee7d /babel.config.js | |
parent | c1368b86963b93a42ec98a856f8d307d922c8967 (diff) | |
download | nextcloud-server-1f805c5dc2cbebd174f39e61d819b5dfc9a71a4a.tar.gz nextcloud-server-1f805c5dc2cbebd174f39e61d819b5dfc9a71a4a.zip |
Remove unneeded babel config variable
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'babel.config.js')
-rw-r--r-- | babel.config.js | 11 |
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, - } - ] - ] -}; + }, + ], + ], +} |