This Node.js module is a plugin for the Lasso.js, that provides support to precompile Facebook React JSX files with the .jsx extension into JavaScript.
$ npm install --save lasso-jsxIn your dependencies list in browser.json, just go ahead and all your source .jsx files
[
"main.jsx",
"components/toolbar.jsx",
...
]And add lasso-jsx as the required plugin in lasso-config.json
{
"plugins": [
"lasso-jsx"
...
],
...
}The JSX directive /** @jsx React.DOM */ is automatically prepended to .jsx files if missing.