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

github.com/nextcloud/notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.babelrc.js')
-rw-r--r--.babelrc.js13
1 files changed, 4 insertions, 9 deletions
diff --git a/.babelrc.js b/.babelrc.js
index a1690d0d..1b585cfd 100644
--- a/.babelrc.js
+++ b/.babelrc.js
@@ -1,13 +1,8 @@
module.exports = {
- plugins: ['@babel/plugin-syntax-dynamic-import'],
+ plugins: [
+ '@babel/plugin-syntax-dynamic-import',
+ ],
presets: [
- [
- '@babel/preset-env',
- {
- targets: {
- browsers: ['last 2 versions', 'ie >= 11']
- }
- }
- ]
+ [ '@babel/preset-env', { useBuiltIns: 'usage', corejs: 3 } ],
]
}