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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-04-02 10:40:05 +0300
committerJoas Schilling <coding@schilljs.com>2020-04-02 12:19:54 +0300
commitd3e1567d7f8729d8349769dbf30c67df9c71b8ab (patch)
treee29f54427ce0042381cc85845a0c8c1e4616e507 /babel.config.js
parent9d9a1d3ba7bb7bd397dd7ee24a029bf1de42a8d5 (diff)
Compile some more libs to make IE load
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'babel.config.js')
-rw-r--r--babel.config.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/babel.config.js b/babel.config.js
new file mode 100644
index 000000000..3a365aec6
--- /dev/null
+++ b/babel.config.js
@@ -0,0 +1,12 @@
+module.exports = {
+ presets: [
+ [
+ '@babel/preset-env',
+ {
+ corejs: 3,
+ useBuiltIns: 'usage',
+ modules: false,
+ },
+ ],
+ ],
+}