We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
First up, obviously:
npm install --save-dev jsx-control-statements
How to use the plugin depends on how you configure Babel:
require("babel/register")({ plugins: ["jsx-control-statements"] });
babel --plugins jsx-control-statements script.js
{ "plugins": ["jsx-control-statements"] }
browserify({ // etc etc transform: [ babelify.configure({ plugins: ["jsx-control-statements"] }) ] });