about summary refs log tree commit diff
path: root/.babelrc
diff options
context:
space:
mode:
authorNolan Lawson <nolan@nolanlawson.com>2017-05-06 12:25:26 -0700
committerEugen Rochko <eugen@zeonfederated.com>2017-05-06 21:25:26 +0200
commit59ca634b890f304275a8a36001e879fac929efee (patch)
treeac73b069d0f3cdde062d628c0eae96d3c019af78 /.babelrc
parent80093662312995f981dca8519e4be92c1cad6f8b (diff)
remove preset-es2015 from babel config (#2849)
Diffstat (limited to '.babelrc')
-rw-r--r--.babelrc5
1 files changed, 3 insertions, 2 deletions
diff --git a/.babelrc b/.babelrc
index d9fb15f1a..13578a79f 100644
--- a/.babelrc
+++ b/.babelrc
@@ -1,12 +1,13 @@
 {
   "presets": [
-    "es2015",
     "react",
     [
       "env",
       {
         "loose": true,
-        "modules": false
+        "targets": {
+          "browsers": ["last 2 versions", "IE >= 11", "iOS >= 9"]
+        }
       }
     ]
   ],