summaryrefslogtreecommitdiffstats
path: root/babel.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'babel.config.js')
-rw-r--r--babel.config.js11
1 files changed, 6 insertions, 5 deletions
diff --git a/babel.config.js b/babel.config.js
index 0aeac49aa..49e950e00 100644
--- a/babel.config.js
+++ b/babel.config.js
@@ -1,5 +1,6 @@
-// SPDX-FileCopyrightText: Carl Schwan <carl@carlschwan.eu>
-// SPDX-License-Identifier: AGPL-3.0-or-later
-const babelConfig = require('@nextcloud/babel-config')
-
-module.exports = babelConfig
+module.exports = {
+ plugins: [
+ '@babel/plugin-syntax-dynamic-import',
+ ],
+ presets: ['@babel/preset-env', '@babel/preset-typescript'],
+}