graphbrainz/.babelrc

20 lines
306 B
Text
Raw Normal View History

2016-08-08 07:54:06 +00:00
{
"presets": [
[
"env",
{
"targets": {
"node": "8.10"
}
}
]
],
"plugins": ["transform-runtime", "syntax-object-rest-spread"],
"only": ["scripts/**", "src/**", "test/helpers/**"],
2016-12-07 08:23:02 +00:00
"env": {
"test": {
"plugins": ["istanbul"]
}
}
2016-08-08 07:54:06 +00:00
}