metro/.babelrc

21 lines
443 B
Plaintext
Raw Normal View History

2017-01-26 12:56:40 +00:00
{
"plugins": [
"syntax-trailing-function-commas",
2017-02-23 16:11:05 +00:00
"transform-async-to-generator",
2017-05-22 10:39:13 +00:00
"transform-class-properties",
2017-01-26 12:56:40 +00:00
"transform-es2015-destructuring",
"transform-es2015-parameters",
"transform-es2015-spread",
2017-02-23 16:11:05 +00:00
"transform-flow-strip-types",
"transform-object-rest-spread"
2017-01-26 12:56:40 +00:00
],
2017-06-01 10:48:12 +00:00
"retainLines": true,
"env": {
"test": {
"plugins": [
"babel-preset-fbjs/plugins/inline-requires"
]
}
}
2017-01-26 12:56:40 +00:00
}