Babel-preset-env and Meteor

Have you gotten babel-preset-env to work with Meteor’s babel.rc?

I tried it with:

{
  "presets": [
    ["env", {
      "targets": {
        "browsers": ["last 2 versions", "safari >= 7"]
      }
    }]
  ]
}

but it didn’t seem to take (the output looked the same).

1 Like