mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 08:25:14 +00:00
.. | ||
lib | ||
.npmignore | ||
package.json | ||
README.md |
babel-plugin-syntax-jsx
Installation
$ npm install babel-plugin-syntax-jsx
Usage
Via .babelrc
(Recommended)
.babelrc
{
"plugins": ["syntax-jsx"]
}
Via CLI
$ babel --plugins syntax-jsx script.js
Via Node API
require("babel-core").transform("code", {
plugins: ["syntax-jsx"]
});