Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@babel/plugin-transform-typescript
Advanced tools
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.
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 }
The official TypeScript compiler that converts TypeScript code to JavaScript. It provides type checking along with the transformation, which @babel/plugin-transform-typescript does not do.
A TypeScript loader for webpack. It works in conjunction with the TypeScript compiler to transpile TypeScript files in webpack builds, similar to how @babel/plugin-transform-typescript works with Babel.
Another TypeScript loader for webpack that aims to be faster than ts-loader. It also provides Babel-like transformation of TypeScript code but is specifically designed for webpack's module bundling.
Transform TypeScript into ES.next
See our website @babel/plugin-transform-typescript for more information.
Using npm:
npm install --save-dev @babel/plugin-transform-typescript
or using yarn:
yarn add @babel/plugin-transform-typescript --dev
v7.26.3 (2024-12-04)
babel-generator
babel-helper-builder-binary-assignment-operator-visitor
, babel-plugin-transform-exponentiation-operator
babel-generator
babel-traverse
babel-plugin-transform-modules-commonjs
simplifyAccess
(@liuxingbaoyu)FAQs
Transform TypeScript into ES.next
The npm package @babel/plugin-transform-typescript receives a total of 17,530,554 weekly downloads. As such, @babel/plugin-transform-typescript popularity was classified as popular.
We found that @babel/plugin-transform-typescript demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.