
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
@types/babel__preset-env
Advanced tools
TypeScript definitions for @babel/preset-env
npm install --save @types/babel__preset-env
This package contains type definitions for @babel/preset-env (https://github.com/babel/babel/tree/master/packages/babel-preset-env).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/babel__preset-env.
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;
/**
* The Browserslist environment to use.
* Added in v7.10.0.
*
* See {@link https://babeljs.io/docs/babel-preset-env.html#browserslistenv}
*/
browserslistEnv?: string | 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 };
/**
* https://babeljs.io/docs/babel-preset-env#corejs
*/
export type CorejsVersion = 2 | 3 | string;
These definitions were written by Slava Fomin II.
FAQs
TypeScript definitions for @babel/preset-env
We found that @types/babel__preset-env demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.