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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2018-12-11 22:56:46 +0300
committerJulius Härtl <jus@bitgrid.net>2019-01-09 17:01:59 +0300
commit208788173d0dab2950bf5eb1ddbfcab63ef781e3 (patch)
treeac54763283ecec74a8a4aa873fcae57a8baa098a /.babelrc
parent1fd6741182f3f39458612fbf9b3e381eb7d2f62f (diff)
Npmize (vendor) scripts
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to '.babelrc')
-rw-r--r--.babelrc16
1 files changed, 16 insertions, 0 deletions
diff --git a/.babelrc b/.babelrc
new file mode 100644
index 00000000000..27961b3d252
--- /dev/null
+++ b/.babelrc
@@ -0,0 +1,16 @@
+{
+ "presets": [
+ [
+ "@babel/preset-env",
+ {
+ "modules": false,
+ "targets": {
+ "browsers": [
+ "last 2 versions",
+ "ie >= 11"
+ ]
+ }
+ }
+ ]
+ ]
+}