Skip to content

Instantly share code, notes, and snippets.

@johnstew
Created February 1, 2017 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnstew/ac4e573b447f041d2da6f724169068cf to your computer and use it in GitHub Desktop.
Save johnstew/ac4e573b447f041d2da6f724169068cf to your computer and use it in GitHub Desktop.
babelrc with preset-env and lodash
{
"presets": [
[
"env", {
"targets": {
"browsers": [
"last 2 versions",
"safari >= 7"
]
},
"useBuiltIns": true,
"debug": true,
"modules": false
}
]
],
"plugins": ["lodash"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment