Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

babel-plugin-transform-typescript

babel11.2kMIT7.0.0-alpha.19

Transform TypeScript into ES.next

babel-plugin, typescript

readme

babel-plugin-transform-typescript

Transform TypeScript into ES.next.

Does not type-check its input. For that, you will need to install and set up TypeScript.

Does not support namespaces or const enums because those require type information to transpile. Also does not support export = and import =, because those cannot be transpiled to ES.next.

Example

In

const x: number = 0;

Out

const x = 0;

Installation

npm install --save-dev babel-plugin-transform-typescript

Usage

.babelrc

{
  "plugins": ["transform-typescript"]
}

Via CLI

babel --plugins transform-typescript script.js

Via Node API

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