@babel/plugin-transform-typescript
This plugin adds support for the syntax used by the TypeScript programming language. However, this plugin does not add the ability to type-check the JavaScript passed to it. For that, you will need to install and set up TypeScript.
Example
In
const x: number = 0;
Out
const x = 0;
Installation
npm install --save-dev @babel/plugin-transform-typescript
Usage
Via .babelrc (Recommended)
.babelrc
{
"plugins": ["@babel/plugin-transform-typescript"]
}
Via CLI
babel --plugins @babel/plugin-transform-typescript script.js
Via Node API
require("@babel/core").transform("code", {
plugins: ["@babel/plugin-transform-typescript"]
});
Caveats
Because there are features of the TypeScript language which rely on the full type-system to be available to make changes at runtime. This section of caveats is quite long, however, it's worth noting that a few of these features are only found in older TypeScript codebases and have modern JavaScript equivalents which you are probably already using.
Since Babel does not type-check, code which is syntactically correct, but would fail the TypeScript type-checking may successfully get transformed, and often in unexpected or invalid ways.
This plugin does not support
const enum
s because those require type information to compile.
Workarounds:
- Use the plugin babel-plugin-const-enum.
- Remove the
const
, which makes it available at runtime.
Workaround: Convert to using export default
and export const
, and import x, {y} from "z"
.
Changes to your
tsconfig.json
are not reflected in babel. The build process will always behave as thoughisolateModules
is turned on, there are Babel-native alternative ways to set a lot of thetsconfig.json
options however.Q: Why doesn't Babel allow export of a
var
orlet
?
A: The TypeScript compiler dynamically changes how these variables are used depending on whether or not the value is mutated. Ultimately, this depends on a type-model and is outside the scope of Babel. A best-effort implementation would transform context-dependent usages of the variable to always use the Namespace.Value
version instead of Value
, in case it was mutated outside of the current file. Allowing var
or let
from Babel (as the transform is not-yet-written) is therefore is more likely than not to present itself as a bug when used as-if it was not const
.
Impartial Namespace Support
If you have existing code which uses the TypeScript-only namespace features. Babel supports a subset of TypeScript's namespace features. If you are considering writing new code which uses namespace, using the ES2015 import
/export
is recommended instead. It's not going away, but there are modern alternatives.
Type-only
namespace
s should be marked withdeclare
and will subsequently be safely removed.namespaces
s not marked withdeclare
are experimental and disabled by default. Not enabling will result in an error: "Namespace not marked type-only declare. Non-declarative namespaces are only supported experimentally in Babel."
Workaround: Enable the allowNamespaces
option.
export
ing a variable usingvar
orlet
in anamespace
will result in an error: "Namespaces exporting non-const are not supported by Babel. Change to const or …"
Workaround: Use const
. If some form of mutation is required, explicitly use an object with internal mutability.
namespace
s will not share their scope. In TypeScript, it is valid to refer to contextual items that anamespace
extends without qualifying them, and the compiler will add the qualifier. In Babel, there is no type-model, and it is impossible to dynamically change references to match the established type of the parent object.
Consider this code:
namespace N {
export const V = 1;
}
namespace N {
export const W = V;
}
The TypeScript compiler compiles it to something like this:
var N = {};
(function (N) {
N.V = 1;
})(N);
(function (N) {
N.W = N.V;
})(N);
While Babel will transform it to something like this:
var N;
(function (_N) {
const V = _N = 1;
})(N || (N = {}));
(function (_N) {
const W = V;
})(N || (N = {}));
As Babel doesn't understand the type of N
, the reference to V
will be undefined
resulting in an error.
Workaround: Explicitly refer to values not in the same namespace definition, even if they would be in the scope according to TypeScript. Examples:
namespace N {
export const V = 1;
}
namespace N {
export const W = N.V;
}
Or:
namespace N {
export const V = 1;
export const W = V;
}
Options
isTSX
boolean
, defaults to false
jsxPragma
string
, defaults to React
Replace the function used when compiling JSX expressions.
This is so that we know that the import is not a type import, and should not be removed
allowNamespaces
boolean
, defaults to false
but will default to true
in the future.
You can read more about configuring plugin options here
TypeScript Compiler Options
The official TypeScript compiler has many options for configuring how itcompiles and type checks. While many don't apply, some behaviors might be useful and theirequivalents in Babel can be enabled by some configuration options or plugins.
—alwaysStrict
You can use thestrictMode
parser option:
module.exports = {
parserOpts: { strictMode: true },
};
—downlevelIteration
You can use the@babel/plugin-transform-for-of
plugin. If you are using@babel/preset-env
,for…of
is already transpiled using iterators when it isn't supported by your compilation target(s).—emitDecoratorMetadata
This option isn't supported by an official Babel package since it is a TypeScript-specific addition and not part of the decorators proposal.If you rely on this feature, you can use the community plugin babel-plugin-transform-typescript-metadata.—esModuleInterop
This is the default behavior of Babel when transpiling ECMAScript modules.—experimentalDecorators
This option enables support for the "legacy" decorator proposal. You can enable it in Babel using the@babel/plugin-proposal-decorators
plugin, but please be aware, there are some minor differences.
module.exports = {
plugins: [
["@babel/plugin-proposal-decorators", { legacy: true }]
]
};
—importHelpers
This is the equivalent of the@babel/plugin-transform-runtime
package.—inlineSourceMap
You can set thesourceMaps: "inline"
option in yourbabel.config.js
file.—isolatedModules
This is the default Babel behavior, and it can't be turned off because Babel doesn't support cross-file analysis.—jsx
JSX support is provided using another plugin.If you want your output to contains JSX code (i.e.—jsx preserve
), you need the@babel/plugin-syntax-jsx
plugin; if you want to transpile it to standard JavaScript (i.e.—jsx react
or—jsx react-native
), you should use the@babel/plugin-transform-react-jsx
plugin.—jsxFactory
It can be customized using thepragma
option of the@babel/plugin-transform-react-jsx
package. You also need to set thejsxPragma
option of this plugin.—module
,-m
If you are using a bundler (Webpack or Rollup), this option is set automatically.If you are using@babel/preset-env
, you can use themodules
option; otherwise you can load the specific plugin.
—module
value**@babel/preset-env
's modules
**Single pluginNone
false
/CommonJS
"commonjs"
or "cjs"
@babel/plugin-transform-modules-commonjs
AMD
"amd"
@babel/plugin-transform-modules-amd
System
"systemjs"
@babel/plugin-transform-modules-systemjs
UMD
"umd"
@babel/plugin-transform-modules-umd
ES6
or ES2015
false
/
—outDir
When using@babel/cli
, you can set the—out-dir
option.—outFile
Babel doesn't support concatenating output files: you should use a bundler (like Webpack, Rollup or Parcel) for that.When using@babel/cli
, you can compile a single file using the—out-file
option.—sourceMap
You can use the top-levelsourceMaps: true
option.—target
Babel doesn't support targeting a specific version of the language, but you can choose which engines you want to target using@babel/preset-env
.If you prefer, you can enable individual plugins for every ECMAScript feature.—watch
,-w
When using@babel/cli
, you can specify the—watch
option.