Given the following
```js
a = <F new/>
```
We used to generate:
```js
a = React.createElement(F, {"new": true})
```
but now we generate
```js
a = React.createElement(F, {new: true})
```
If you need to quote these (ie for ES3 you can use
transform-property-literals)
4 lines
72 B
JSON
4 lines
72 B
JSON
{
|
|
"plugins": ["transform-react-jsx", "transform-property-literals"]
|
|
}
|