You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
![]() |
2 years ago | |
---|---|---|
.. | ||
lib | 2 years ago | |
.npmignore | 2 years ago | |
README.md | 2 years ago | |
package.json | 2 years ago |
README.md
babel-plugin-syntax-flow
Installation
$ npm install babel-plugin-syntax-flow
Usage
Via .babelrc
(Recommended)
.babelrc
{
"plugins": ["syntax-flow"]
}
Via CLI
$ babel --plugins syntax-flow script.js
Via Node API
require("babel-core").transform("code", {
plugins: ["syntax-flow"]
});