Socket
Socket
Sign inDemoInstall

@babel/plugin-transform-typescript

Package Overview
Dependencies
61
Maintainers
4
Versions
120
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@babel/plugin-transform-typescript

Transform TypeScript into ES.next


Version published
Maintainers
4
Weekly downloads
16,142,550
decreased by-4.86%

Weekly downloads

Package description

What is @babel/plugin-transform-typescript?

The @babel/plugin-transform-typescript package is a Babel plugin that allows Babel to parse and transform TypeScript code into JavaScript. It strips out type annotations and compiles the code down to a version of JavaScript that can run in current and older browsers or environments.

What are @babel/plugin-transform-typescript's main functionalities?

TypeScript Syntax Transformation

Transforms TypeScript syntax by removing type annotations to produce valid JavaScript code. The code sample shows a TypeScript variable with a type annotation that would be stripped out.

const x: number = 10;

TypeScript Namespaces

Handles TypeScript namespaces and transforms them into a format that can be understood by JavaScript environments. The code sample demonstrates a namespace declaration that would be transformed.

namespace MyNamespace { export const x: number = 10; }

Enums

Compiles TypeScript enums into objects that preserve the enum semantics in JavaScript. The code sample shows an enum that would be converted into a JavaScript object.

enum Directions { Up, Down, Left, Right }

Other packages similar to @babel/plugin-transform-typescript

Changelog

Source

v7.20.2 (2022-11-04)

:bug: Bug Fix
  • babel-core, babel-helper-create-class-features-plugin, babel-helper-module-transforms, babel-helper-plugin-utils, babel-helper-simple-access, babel-node, babel-plugin-transform-block-scoping, babel-plugin-transform-classes, babel-plugin-transform-react-constant-elements, babel-preset-env, babel-standalone, babel-types
    • #15124 fix: @babel/node repl and enable no-use-before-define rule (@liuxingbaoyu)
  • babel-plugin-transform-typescript
    • #15121 fix: tsSatisfiesExpression check with different duplicated @babel/types versions (@liuxingbaoyu)
  • babel-parser
  • babel-generator
  • babel-plugin-proposal-decorators, babel-plugin-proposal-object-rest-spread, babel-plugin-transform-jscript
    • #15113 fix: wrap anonymous class expression within statement (@JLHwung)
  • babel-plugin-transform-destructuring

Readme

Source

@babel/plugin-transform-typescript

Transform TypeScript into ES.next

See our website @babel/plugin-transform-typescript for more information.

Install

Using npm:

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

or using yarn:

yarn add @babel/plugin-transform-typescript --dev

Keywords

FAQs

Last updated on 04 Nov 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc