Socket
Socket
Sign inDemoInstall

@types/babel__core

Package Overview
Dependencies
8
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/babel__core

TypeScript definitions for @babel/core


Version published
Maintainers
1
Weekly downloads
24,261,693
decreased by-1.54%
Install size
2.86 MB

Weekly downloads

Package description

What is @types/babel__core?

The @types/babel__core package provides TypeScript type definitions for Babel Core, the primary library for transforming JavaScript code according to specified plugins and presets. This package is essential for TypeScript developers who use Babel, as it enables type checking and IntelliSense for Babel Core's API within TypeScript projects.

What are @types/babel__core's main functionalities?

Transforming code

Transform JavaScript code using Babel presets and plugins. This example demonstrates transforming a simple piece of JavaScript code using the '@babel/preset-env' preset.

"import * as babel from 'babel__core';\nconst code = 'const x = 1;';\nconst result = babel.transform(code, { presets: ['@babel/preset-env'] });\nconsole.log(result.code);"

Loading Babel configuration

Load Babel configuration for a given file. This example shows how to load the Babel configuration options for a specific file, which is useful for understanding how Babel will process the file.

"import { loadPartialConfig } from 'babel__core';\nconst config = loadPartialConfig({ filename: './path/to/file.js' });\nconsole.log(config.options);"

Parsing code

Parse JavaScript code into an Abstract Syntax Tree (AST). This example demonstrates parsing a piece of JavaScript code into an AST, which can then be manipulated or analyzed.

"import { parse } from 'babel__core';\nconst code = 'let x = 1;';\nconst ast = parse(code, { sourceType: 'module' });\nconsole.log(ast);"

Other packages similar to @types/babel__core

Readme

Source

Installation

npm install --save @types/babel__core

Summary

This package contains type definitions for @babel/core (https://github.com/babel/babel/tree/master/packages/babel-core).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/babel__core.

Additional Details

Credits

These definitions were written by Troy Gerwien, Marvin Hagemeister, Melvin Groenhoff, Jessica Franco, and Ifiok Jr..

FAQs

Last updated on 20 Mar 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