mirror of https://github.com/status-im/metro.git
27 lines
599 B
Plaintext
27 lines
599 B
Plaintext
// Keep in sync with packager/transformer.js
|
|
{
|
|
"retainLines": true,
|
|
"compact": true,
|
|
"comments": false,
|
|
"whitelist": [
|
|
"es6.arrowFunctions",
|
|
"es6.blockScoping",
|
|
// This is the only place where we differ from transformer.js
|
|
"es6.constants",
|
|
"es6.classes",
|
|
"es6.destructuring",
|
|
"es6.parameters",
|
|
"es6.properties.computed",
|
|
"es6.properties.shorthand",
|
|
"es6.spread",
|
|
"es6.templateLiterals",
|
|
"es7.asyncFunctions",
|
|
"es7.trailingFunctionCommas",
|
|
"es7.objectRestSpread",
|
|
"flow",
|
|
"react",
|
|
"regenerator"
|
|
],
|
|
"sourceMaps": false
|
|
}
|