Skip to content
This repository has been archived by the owner on Oct 27, 2019. It is now read-only.

Latest commit

 

History

History
35 lines (24 loc) · 395 Bytes

README.md

File metadata and controls

35 lines (24 loc) · 395 Bytes

babel-preset-stage-0

Babel preset for stage 0 plugins.

Install

$ npm install --save-dev babel-preset-stage-0

Usage

Via .babelrc (Recommended)

.babelrc

{
  "presets": ["stage-0"]
}

Via CLI

$ babel script.js --presets stage-0

Via Node API

require("babel-core").transform("code", {
  presets: ["stage-0"]
});