1.1.7 • Published 11 years ago
optimizer-jsx v1.1.7
optimizer-jsx
This Node.js module is a plugin for the RaptorJS Optimizer, that provides support to precompile Facebook React JSX files with the .jsx extension into JavaScript.
Install
$ npm install --save optimizer-jsxUsage
In your dependencies list in optimizer.json, just go ahead and all your source .jsx files
[
"main.jsx",
"components/toolbar.jsx",
...
]And add optimizer-jsx as the required plugin in optimizer-config.json
{
"plugins": [
"optimizer-jsx"
...
],
...
}The JSX directive /** @jsx React.DOM */ is automatically prepended to .jsx files if missing.