shichen b6c5ecc67a init преди 10 месеца
..
lib b6c5ecc67a init преди 10 месеца
.npmignore b6c5ecc67a init преди 10 месеца
README.md b6c5ecc67a init преди 10 месеца
package.json b6c5ecc67a init преди 10 месеца

README.md

babel-plugin-transform-export-extensions

Compile additional export-from statements to ES2015

Example

export * as ns from 'mod';
export v from 'mod';

Try in REPL

Installation

npm install --save-dev babel-plugin-transform-export-extensions

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["transform-export-extensions"]
}

Via CLI

babel --plugins transform-export-extensions script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["transform-export-extensions"]
});

References