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:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-03-10 11:58:52 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-03-26 15:22:35 +0300
commitfa9c206fc8b9b01e79ff7d221a26f037a472e6ef (patch)
tree41282ab5161ada327153ab90cbb96417ccd01f74 /babel.config.js
parent62403d0932be7d620c7bdadc6b4e13eb496fcd6f (diff)
Migrate from @babel/polyfill to core-js@3
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'babel.config.js')
-rw-r--r--babel.config.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/babel.config.js b/babel.config.js
index 004c14b5119..aeaa21291ad 100644
--- a/babel.config.js
+++ b/babel.config.js
@@ -7,7 +7,9 @@ module.exports = {
[
'@babel/preset-env',
{
- modules: false
+ modules: false,
+ corejs: 3,
+ useBuiltIns: false,
}
]
]