Socket
Socket
Sign inDemoInstall

@types/babel__preset-env

Package Overview
Dependencies
0
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @types/babel__preset-env

TypeScript definitions for @babel/preset-env


Version published
Weekly downloads
188K
increased by0.03%
Maintainers
1
Install size
6.75 kB
Created
Weekly downloads
 

Readme

Source

Installation

npm install --save @types/babel__preset-env

Summary

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

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/babel__preset-env.

index.d.ts

export interface Options {
    targets?: TargetsOptions | undefined;
    bugfixes?: boolean | undefined;
    spec?: boolean | undefined;
    loose?: boolean | undefined;
    modules?: ModuleOption | undefined;
    debug?: boolean | undefined;
    include?: PluginList | undefined;
    exclude?: PluginList | undefined;
    useBuiltIns?: UseBuiltInsOption | undefined;
    corejs?: CorejsOption | undefined;
    forceAllTransforms?: boolean | undefined;
    configPath?: string | undefined;
    ignoreBrowserslistConfig?: boolean | undefined;
    shippedProposals?: boolean | undefined;
}

/**
 * "targets" config option:
 * https://babeljs.io/docs/en/babel-preset-env#targets
 */
export type TargetsOptions =
    | BrowserslistQuery
    | readonly BrowserslistQuery[]
    | { [key in Target]?: string }
    | { esmodules: true }
    | { node: string | "current" | true }
    | { safari: string | "tp" }
    | { browsers: string | readonly string[] };

export type BrowserslistQuery = string;

/**
 * List of supported Browserslist targets:
 * Source: https://github.com/browserslist/browserslist#browsers
 */
export type Target =
    | "Android"
    | "Baidu"
    | "BlackBerry"
    | "bb"
    | "Chrome"
    | "ChromeAndroid"
    | "and_chr"
    | "Edge"
    | "Electron"
    | "Explorer"
    | "ie"
    | "ExplorerMobile"
    | "ie_mob"
    | "Firefox"
    | "ff"
    | "FirefoxAndroid"
    | "and_ff"
    | "iOS"
    | "ios_saf"
    | "Node"
    | "Opera"
    | "OperaMini"
    | "op_mini"
    | "OperaMobile"
    | "op_mob"
    | "QQAndroid"
    | "and_qq"
    | "Safari"
    | "Samsung"
    | "UCAndroid"
    | "and_uc"
    | "kaios";

/**
 * https://babeljs.io/docs/en/babel-preset-env#modules
 */
export type ModuleOption =
    | "amd"
    | "umd"
    | "systemjs"
    | "commonjs"
    | "cjs"
    | "auto"
    | false;

export type PluginList = readonly PluginListItem[];
export type PluginListItem = string | RegExp;

export type UseBuiltInsOption =
    | "usage"
    | "entry"
    | false;

export type CorejsOption =
    | CorejsVersion
    | { version: CorejsVersion; proposals: boolean };

export type CorejsVersion = 2 | 3;

Additional Details

  • Last updated: Mon, 20 Nov 2023 23:36:23 GMT
  • Dependencies: none

Credits

These definitions were written by Slava Fomin II.

FAQs

Last updated on 20 Nov 2023

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