
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@babel/plugin-syntax-typescript
Advanced tools
The @babel/plugin-syntax-typescript package is a plugin for Babel that allows Babel to parse TypeScript syntax. This means it enables Babel to understand TypeScript code, but it does not perform type checking or compilation to JavaScript. It's primarily used in projects that want to take advantage of Babel's transformations and plugins while writing their code in TypeScript.
Parsing TypeScript Syntax
This feature allows Babel to parse TypeScript code, including imports, exports, interfaces, and type annotations, without performing type checking. It's useful for projects that use Babel for code transformation and want to write their source code in TypeScript.
import { foo } from 'bar';
interface MyInterface {
myProperty: string;
}
const myVar: MyInterface = { myProperty: 'Hello' };
The TypeScript package is the official compiler for TypeScript. Unlike @babel/plugin-syntax-typescript, it performs both parsing and compilation of TypeScript code into JavaScript, including type checking. It's a more comprehensive solution for projects that are exclusively using TypeScript.
This package is an ESLint parser that allows ESLint to lint TypeScript code. It's similar to @babel/plugin-syntax-typescript in that it enables understanding of TypeScript syntax, but it's specifically focused on linting rather than transforming code.
ts-node is a TypeScript execution engine and REPL for Node.js. It allows you to directly run TypeScript files in Node.js without pre-compiling them. This is different from @babel/plugin-syntax-typescript, which only parses TypeScript syntax for Babel transformations and does not include an execution environment.
Allow parsing of TypeScript syntax
See our website @babel/plugin-syntax-typescript for more information.
Using npm:
npm install --save-dev @babel/plugin-syntax-typescript
or using yarn:
yarn add @babel/plugin-syntax-typescript --dev
v7.16.7 (2021-12-31)
babel-plugin-transform-runtime
, babel-runtime-corejs2
, babel-runtime-corejs3
, babel-runtime
babel-helpers
babel-helper-function-name
, babel-plugin-transform-function-name
babel-core
$schema
property in json config files (@The-x-Theorist)FAQs
Allow parsing of TypeScript syntax
The npm package @babel/plugin-syntax-typescript receives a total of 29,227,638 weekly downloads. As such, @babel/plugin-syntax-typescript popularity was classified as popular.
We found that @babel/plugin-syntax-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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.