graphbrainz/.babelrc
2018-08-04 12:04:19 -07:00

19 lines
306 B
Text

{
"presets": [
[
"env",
{
"targets": {
"node": "8.10"
}
}
]
],
"plugins": ["transform-runtime", "syntax-object-rest-spread"],
"only": ["scripts/**", "src/**", "test/helpers/**"],
"env": {
"test": {
"plugins": ["istanbul"]
}
}
}