Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 381 Bytes

File metadata and controls

35 lines (23 loc) · 381 Bytes

babel-plugin-syntax-flow

Installation

npm install --save-dev 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"]
});