From: Nolan Lawson Date: Sat, 6 May 2017 19:25:26 +0000 (-0700) Subject: remove preset-es2015 from babel config (#2849) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=59ca634b890f304275a8a36001e879fac929efee;p=mastodon.git remove preset-es2015 from babel config (#2849) --- 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"] + } } ] ],