maputnik/.babelrc

14 lines
258 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", {
exclude: ["node_modules/**", "test/**"]
}]
]
}
}
2017-06-23 15:47:15 +02:00
}