@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
With a configuration file (Recommended)
{
"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 enums because those require type information to compile.Workarounds:
- Use the plugin babel-plugin-const-enum.
- Remove the
const, which makes it available at runtime.
-
This plugin does not support
export =andimport =, because those cannot be compiled to ES.next. These are a TypeScript only form ofimport/export.Workarounds:
- Use the plugin babel-plugin-replace-ts-export-assignment to transform
export =. - Convert to using
export defaultandexport const, andimport x, {y} from "z".
- Use the plugin babel-plugin-replace-ts-export-assignment to transform
Changes to your
tsconfig.jsonare not reflected in babel. The build process will always behave as thoughisolatedModulesis turned on, there are Babel-native alternative ways to set a lot of thetsconfig.jsonoptions however.-
Q: Why doesn't Babel allow export of a
varorlet?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.Valueversion instead ofValue, in case it was mutated outside of the current file. Allowingvarorletfrom 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 notconst.
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
namespaces should be marked withdeclareand will subsequently be safely removed.-
namespacess not marked withdeclareare 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
allowNamespacesoption. -
exporting a variable usingvarorletin anamespacewill 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. -
namespaces will not share their scope. In TypeScript, it is valid to refer to contextual items that anamespaceextends 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 toVwill beundefinedresulting 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
allowDeclareFields
boolean, defaults to false
Added in v7.7.0
NOTE: This will be enabled by default in Babel 8
When enabled, type-only class fields are only removed if they are prefixed with the declare modifier:
class A {
declare foo: string; // Removed
bar: string; // Initialized to undefined
}
allowNamespaces
boolean, defaults to false but will default to true in the future.
Added in: v7.5.0
Enables compilation of TypeScript namespaces.
isTSX
boolean, defaults to false
Forcibly enables jsx parsing. Otherwise angle brackets will be treated as TypeScript's legacy type assertion var foo = <string>bar;. Also, isTSX: true requires allExtensions: true.
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.
onlyRemoveTypeImports
boolean, defaults to false
Added in: v7.9.0
When set to true, the transform will only remove type-only imports (introduced in TypeScript 3.8). This should only be used if you are using TypeScript >= 3.8.
class A {
declare foo: string; // Removed
bar: string; // Initialized to undefined
prop?: string; // Initialized to undefined
prop1!: string // Initialized to undefined
}
TypeScript Compiler Options
The official TypeScript compiler has many options for configuring how it compiles and type checks. While many don't apply, some behaviors might be useful and their equivalents in Babel can be enabled by some configuration options or plugins.
-
--alwaysStrictYou can use thestrictModeparser option:module.exports = { parserOpts: { strictMode: true }, }; --downlevelIterationYou can use the@babel/plugin-transform-for-ofplugin. If you are using@babel/preset-env,for...ofis already transpiled using iterators when it isn't supported by your compilation target(s).--emitDecoratorMetadataThis 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.--esModuleInteropThis is the default behavior of Babel when transpiling ECMAScript modules.-
--experimentalDecoratorsThis option enables support for the "legacy" decorator proposal. You can enable it in Babel using the@babel/plugin-proposal-decoratorsplugin, but please be aware, there are some minor differences.module.exports = { plugins: [ ["@babel/plugin-proposal-decorators", { legacy: true }] ] }; --importHelpersThis is the equivalent of the@babel/plugin-transform-runtimepackage.---importsNotUsedAsValuesYou can use theonlyRemoveTypeImportsoption to replicate this behavior.onlyRemoveTypeImports: trueis equivalent toimportsNotUsedAsValues: preserve, whileonlyRemoveTypeImports: falseis equivalent toimportsNotUsedAsValues: remove. There is no equivalent forimportsNotUsedAsValues: error.--inlineSourceMapYou can set thesourceMaps: "inline"option in yourbabel.config.jsonfile.--isolatedModulesThis is the default Babel behavior, and it can't be turned off because Babel doesn't support cross-file analysis.--jsxJSX 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-jsxplugin; if you want to transpile it to standard JavaScript (i.e.--jsx reactor--jsx react-native), you should use the@babel/plugin-transform-react-jsxplugin.--jsxFactoryIt can be customized using thepragmaoption of the@babel/plugin-transform-react-jsxpackage. You also need to set thejsxPragmaoption of this plugin.-
--module,-mIf you are using a bundler (Webpack or Rollup), this option is set automatically. If you are using@babel/preset-env, you can use themodulesoption; otherwise you can load the specific plugin.--modulevalue@babel/preset-env'smodulesSingle plugin Nonefalse/ CommonJS"commonjs"or"cjs"@babel/plugin-transform-modules-commonjsAMD"amd"@babel/plugin-transform-modules-amdSystem"systemjs"@babel/plugin-transform-modules-systemjsUMD"umd"@babel/plugin-transform-modules-umdES6orES2015false/ --outDirWhen using@babel/cli, you can set the--out-diroption.--outFileBabel 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-fileoption.--sourceMapYou can use the top-levelsourceMaps: trueoption.--targetBabel 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.--useDefineForClassFieldsYou can use theonlyRemoveTypeImportsoption to replicate this behavior.--watch,-wWhen using@babel/cli, you can specify the--watchoption.