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

github.com/nextcloud/files_pdfviewer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-09-04 23:30:38 +0300
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-09-04 23:30:38 +0300
commitf81dbd83f8b3461123e6ff2de247bb82f5e92ae7 (patch)
treee0a54a50922b5640bd36e572488ebe3235dd3ffd /babel.config.js
parent6e1fdbe3f77c943b011229ea5a2c44f0277ee32f (diff)
Added babel
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'babel.config.js')
-rw-r--r--babel.config.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/babel.config.js b/babel.config.js
new file mode 100644
index 0000000..5496c98
--- /dev/null
+++ b/babel.config.js
@@ -0,0 +1,14 @@
+module.exports = {
+ plugins: [
+ '@babel/plugin-syntax-dynamic-import',
+ ],
+ presets: [
+ [
+ '@babel/preset-env',
+ {
+ corejs: 3,
+ useBuiltIns: 'entry',
+ },
+ ],
+ ],
+}