babel-plugin-syntax-flow
v6.18.0
Published
Allow parsing of the flow syntax
Keywords
Readme
babel-plugin-syntax-flow
Installation
$ npm install babel-plugin-syntax-flowUsage
Via .babelrc (Recommended)
.babelrc
{
"plugins": ["syntax-flow"]
}Via CLI
$ babel --plugins syntax-flow script.jsVia Node API
require("babel-core").transform("code", {
plugins: ["syntax-flow"]
});