Adds __self
prop to JSX elements, which React will use to generate some runtime warnings. All React users
should enable this transform in dev mode.
###In
<sometag />
###Out
<sometag __self={this} />
$ npm install babel-plugin-transform-react-jsx-self
.babelrc
{
"plugins": ["transform-react-jsx-self"]
}
$ babel --plugins transform-react-jsx-self script.js
require("babel-core").transform("code", {
plugins: ["transform-react-jsx-self"]
});