synclounge/.babelrc

15 lines
234 B
Plaintext
Raw Normal View History

2017-04-07 05:09:03 +00:00
{
2017-06-11 19:06:34 +00:00
"presets": [
["env", { "modules": false }],
"stage-2"
],
2017-04-07 05:09:03 +00:00
"plugins": ["transform-runtime"],
2017-06-11 19:06:34 +00:00
"comments": false,
"env": {
"test": {
"presets": ["env", "stage-2"],
"plugins": [ "istanbul" ]
}
}
2017-04-07 05:09:03 +00:00
}