npm.io
6.23.0 • Published 9 years ago

babel-preset-flow

Licence
MIT
Version
6.23.0
Deps
1
Vulns
0
Weekly
0
Stars
44.1K

babel-preset-flow

Babel preset for all Flow plugins.

This preset includes the following plugins:

Example

In

function foo(one: any, two: number, three?): string {}

Out

function foo(one, two, three) {}

Installation

npm install --save-dev babel-preset-flow

Usage

.babelrc

{
  "presets": ["flow"]
}
Via CLI
babel --presets flow script.js
Via Node API
require("babel-core").transform("code", {
  presets: ["flow"]
});

Keywords