diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2020-04-02 17:25:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-02 17:25:39 +0200 |
commit | 40bcdb78992bb2282156c146925fdc1e6ce740dd (patch) | |
tree | 74ff6d527909e03d119ea361f4cb7efedef83e2d | |
parent | bc6a5ef5c4431ca662424dbd1125e65e74b27fa8 (diff) | |
parent | 1f805c5dc2cbebd174f39e61d819b5dfc9a71a4a (diff) | |
download | nextcloud-server-40bcdb78992bb2282156c146925fdc1e6ce740dd.tar.gz nextcloud-server-40bcdb78992bb2282156c146925fdc1e6ce740dd.zip |
Merge pull request #20268 from nextcloud/fix/babel
Remove unneeded babel config variable
-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, - } - ] - ] -}; + }, + ], + ], +} |