aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2020-04-02 17:25:39 +0200
committerGitHub <noreply@github.com>2020-04-02 17:25:39 +0200
commit40bcdb78992bb2282156c146925fdc1e6ce740dd (patch)
tree74ff6d527909e03d119ea361f4cb7efedef83e2d
parentbc6a5ef5c4431ca662424dbd1125e65e74b27fa8 (diff)
parent1f805c5dc2cbebd174f39e61d819b5dfc9a71a4a (diff)
downloadnextcloud-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.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,
- }
- ]
- ]
-};
+ },
+ ],
+ ],
+}