maputnik/.babelrc

13 lines
259 B
Text
Raw Normal View History

2017-06-23 15:47:15 +02:00
{
2017-11-07 11:55:25 +01:00
"presets": ["env", "react"],
"plugins": ["transform-object-rest-spread", "transform-class-properties"],
"env": {
"test": {
"plugins": [
["istanbul", {
2018-08-23 04:39:47 +02:00
"exclude": ["node_modules/**", "test/**"]
}]
]
}
}
2018-08-23 04:39:47 +02:00
}