babel-plugin-syntax-meze-jsx
v1.0.13
Published
This plugin allows Babel to parse the Meze JSX syntax. If you want to transform it then see transform-meze-jsx.
Downloads
4
Readme
babel-plugin-syntax-meze-jsx
This plugin allows Babel to parse the Meze JSX syntax. If you want to transform it then see transform-meze-jsx.
Installation
$ npm install babel-plugin-syntax-meze-jsx
Usage
Via .babelrc
(Recommended)
.babelrc
{
"plugins": ["syntax-meze-jsx"]
}
Via CLI
$ babel --plugins syntax-meze-jsx script.js
Via Node API
require("babel-core").transform("code", {
plugins: ["syntax-meze-jsx"]
});