diff --git a/babel.config.js b/babel.config.js index 8be4fc38..6cc757f6 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,3 +1,15 @@ -const babelConfig = require('@nextcloud/babel-config') - -module.exports = babelConfig +module.exports = { + plugins: [ + '@babel/plugin-syntax-dynamic-import', + ], + presets: [ + [ + '@babel/preset-env', + { + "targets": "> 5%, not dead", + useBuiltIns: false, + modules: 'auto', + }, + ], + ], +}