maputnik/.babelrc

22 lines
368 B
Text
Raw Permalink Normal View History

{
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
2019-10-09 20:51:57 +02:00
"static-fs",
"react-hot-loader/babel",
"@babel/plugin-proposal-class-properties",
"@babel/transform-runtime"
],
"env": {
"test": {
"plugins": [
["istanbul", {
"exclude": ["node_modules/**", "test/**"]
}]
]
}
}
}