1
0
mirror of https://github.com/yldio/copilot.git synced 2024-09-21 13:53:51 +03:00
copilot/packages/pseudo-json-ast/.babelrc

31 lines
472 B
Plaintext
Raw Normal View History

{
"sourceMaps": "inline",
"presets": [
["env", {
"spec": true,
"modules": false,
"targets": {
"browsers": [
"last 2 versions",
"safari >= 7"
],
"node": 6
}
}]
],
"env": {
"test": {
"presets": [
["env", {
"spec": true,
"targets": {
"node": "current"
}
}]
],
"plugins": [
"istanbul"
]
}
}
}