Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-04-02 11:53:41 +0300
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-04-02 11:57:13 +0300
commit1f805c5dc2cbebd174f39e61d819b5dfc9a71a4a (patch)
tree5ddd2f60f7796b5a67a15ee17bc8d93eaa6bee7d /babel.config.js
parentc1368b86963b93a42ec98a856f8d307d922c8967 (diff)
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.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,
- }
- ]
- ]
-};
+ },
+ ],
+ ],
+}