/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
declarations/WebpackOptions.d.ts
5 160 строк
167 KB
Alexander Akait
feat: configure or exclude each asset type's minifier via optimization.minimize (#21663)
10 авг 2026, 18:37
Не верифицирован
10 авг 2026, 18:37
5a8fa6c
Код
Авторство
О чём код?
/* * This file was automatically generated. * DO NOT MODIFY BY HAND. * Run `yarn fix:special` to update */ /** * Set the value of `require.amd` and `define.amd`. Or disable AMD support. */ export type Amd = | false | { [k: string]: any; }; /** * Report the first error as a hard error instead of tolerating it. */ export type Bail = boolean; /** * Cache generated modules and chunks to improve performance for multiple incremental builds. */ export type CacheOptions = true | CacheOptionsNormalized; /** * Cache generated modules and chunks to improve performance for multiple incremental builds. */ export type CacheOptionsNormalized = false | MemoryCacheOptions | FileCacheOptions; /** * The base directory (absolute path!) for resolving the `entry` option. If `output.pathinfo` is set, the included pathinfo is shortened to this directory. */ export type Context = string; /** * References to other configurations to depend on. */ export type Dependencies = string[]; /** * Options for the webpack-dev-server. */ export type DevServer = | false | { [k: string]: any; }; /** * A developer tool to enhance debugging (false | eval | [inline-|hidden-|eval-][nosources-][cheap-[module-]]source-map). */ export type DevTool = | { /** * Which asset type should receive this devtool value. */ type: "all" | "javascript" | "css"; /** * A developer tool to enhance debugging (false | eval | [inline-|hidden-|eval-][nosources-][cheap-[module-]]source-map). */ use: RawDevTool; }[] | RawDevTool; /** * A developer tool to enhance debugging (false | eval | [inline-|hidden-|eval-][nosources-][cheap-[module-]]source-map). */ export type RawDevTool = (false | "eval") | string; /** * Enable and configure the Dotenv plugin to load environment variables from .env files. */ export type Dotenv = boolean | DotenvPluginOptions; /** * The entry point(s) of the compilation. */ export type Entry = EntryDynamic | EntryStatic; /** * A Function returning an entry object, an entry string, an entry array or a promise to these things. */ export type EntryDynamic = import("../lib/DynamicEntryPlugin").RawEntryDynamic; /** * A static entry description. */ export type EntryStatic = EntryObject | EntryUnnamed; /** * Module(s) that are loaded upon startup. */ export type EntryItem = string[] | string; /** * The method of loading chunks (methods included by default are 'jsonp' (web), 'import' (ESM), 'importScripts' (WebWorker), 'require' (sync node.js), 'async-node' (async node.js), but others might be added by plugins). */ export type ChunkLoading = false | ChunkLoadingType; /** * The method of loading chunks (methods included by default are 'jsonp' (web), 'import' (ESM), 'importScripts' (WebWorker), 'require' (sync node.js), 'async-node' (async node.js), but others might be added by plugins). */ export type ChunkLoadingType = ("jsonp" | "import-scripts" | "require" | "async-node" | "import") | string; /** * Specifies the filename of the output file on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ export type EntryFilename = FilenameTemplate; /** * Specifies the filename template of output files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ export type FilenameTemplate = | string | import("../lib/TemplatedPathPlugin").TemplatePathFn< import("../lib/Compilation").PathDataChunk >; /** * A single favicon `<link>`: either a path string (used as the icon `href`) or an object with the icon `href` plus extra link attributes (`sizes`, `media`, `color`, `type`, `crossorigin`). */ export type HtmlFaviconIcon = | string | { /** * Value for the `color` attribute (used by `rel="mask-icon"`). */ color?: string; /** * Value for the `crossorigin` attribute. */ crossorigin?: "anonymous" | "use-credentials"; /** * Path to the icon file, emitted as a hashed asset. */ href: string; /** * Value for the `media` attribute (e.g. `"(prefers-color-scheme: dark)"`). */ media?: string; /** * Value for the `sizes` attribute (e.g. `"180x180"` or `"any"`). */ sizes?: string; /** * Value for the `type` attribute; inferred from the file extension when omitted. */ type?: string; }; /** * Specifies the layer in which modules of this entrypoint are placed. */ export type Layer = null | string; /** * Add a container for define/require functions in the AMD module. */ export type AmdContainer = string; /** * Add a comment in the UMD wrapper. */ export type AuxiliaryComment = string | LibraryCustomUmdCommentObject; /** * Specify which export should be exposed as library. */ export type LibraryExport = string[] | string; /** * The name of the library (some types allow unnamed libraries too). */ export type LibraryName = string[] | string | LibraryCustomUmdObject; /** * Type of library (types included by default are 'var', 'module', 'assign', 'assign-properties', 'this', 'window', 'self', 'global', 'commonjs', 'commonjs2', 'commonjs-module', 'commonjs-static', 'amd', 'amd-require', 'umd', 'umd2', 'jsonp', 'system', but others might be added by plugins). */ export type LibraryType = | ( | "var" | "module" | "assign" | "assign-properties" | "this" | "window" | "self" | "global" | "commonjs" | "commonjs2" | "commonjs-module" | "commonjs-static" | "amd" | "amd-require" | "umd" | "umd2" | "jsonp" | "system" ) | string; /** * If `output.libraryTarget` is set to umd and `output.library` is set, setting this to true will name the AMD module. */ export type UmdNamedDefine = boolean; /** * The 'publicPath' specifies the public URL address of the output files when referenced in a browser. */ export type PublicPath = "auto" | RawPublicPath; /** * The 'publicPath' specifies the public URL address of the output files when referenced in a browser. */ export type RawPublicPath = string | import("../lib/TemplatedPathPlugin").TemplatePathFn; /** * The name of the runtime chunk. If set a runtime chunk with this name is created or an existing entrypoint is used as runtime. */ export type EntryRuntime = false | string; /** * The method of loading WebAssembly Modules (methods included by default are 'fetch' (web/WebWorker), 'async-node' (node.js), but others might be added by plugins). */ export type WasmLoading = false | WasmLoadingType; /** * The method of loading WebAssembly Modules (methods included by default are 'fetch' (web/WebWorker), 'async-node' (node.js), but others might be added by plugins). */ export type WasmLoadingType = ("fetch" | "async-node") | string; /** * An entry point without name. */ export type EntryUnnamed = EntryItem; /** * List of allowed URIs for building http resources. */ export type HttpUriAllowedUris = HttpUriOptionsAllowedUris; /** * List of allowed URIs (resp. the beginning of them). */ export type HttpUriOptionsAllowedUris = ( RegExp | string | import("../lib/schemes/HttpUriPlugin").AllowedUriFn )[]; /** * Extend configuration from another configuration (only works when using webpack-cli). */ export type Extends = ExtendsItem[] | ExtendsItem; /** * Path to the configuration to be extended (only works when using webpack-cli). */ export type ExtendsItem = string; /** * Specify dependencies that shouldn't be resolved by webpack, but should become dependencies of the resulting bundle. The kind of the dependency depends on `output.libraryTarget`. */ export type Externals = ExternalItem[] | ExternalItem; /** * Specify dependency that shouldn't be resolved by webpack, but should become dependencies of the resulting bundle. The kind of the dependency depends on `output.libraryTarget`. */ export type ExternalItem = | RegExp | string | (ExternalItemObjectKnown & ExternalItemObjectUnknown) | ExternalItemFunction; /** * The function is called on each dependency. */ export type ExternalItemFunction = ExternalItemFunctionCallback | ExternalItemFunctionPromise; /** * The function is called on each dependency (`function(context, request, callback(err, result))`). */ export type ExternalItemFunctionCallback = import("../lib/ExternalModuleFactoryPlugin").ExternalItemFunctionCallback; /** * The function is called on each dependency (`function(context, request)`). */ export type ExternalItemFunctionPromise = import("../lib/ExternalModuleFactoryPlugin").ExternalItemFunctionPromise; /** * Specifies the default type of externals ('amd*', 'umd*', 'system' and 'jsonp' depend on output.libraryTarget set to the same value). */ export type ExternalsType = | "var" | "module" | "assign" | "this" | "window" | "self" | "global" | "commonjs" | "commonjs2" | "commonjs-module" | "commonjs-static" | "amd" | "amd-require" | "amd-async" | "umd" | "umd2" | "jsonp" | "system" | "promise" | "import" | "module-import" | "script" | "node-commonjs" | "asset" | "asset-url" | "css-import" | "css-url"; /** * Ignore specific warnings. */ export type IgnoreWarnings = ( | RegExp | { /** * A RegExp to select the origin file for the warning. */ file?: RegExp; /** * A RegExp to select the warning message. */ message?: RegExp; /** * A RegExp to select the origin module for the warning. */ module?: RegExp; } | import("../lib/IgnoreWarningsPlugin").IgnoreFn )[]; /** * Filtering values. */ export type FilterTypes = FilterItemTypes[] | FilterItemTypes; /** * Filtering value, regexp or function. */ export type FilterItemTypes = | RegExp | string | import("../lib/stats/DefaultStatsFactoryPlugin").FilterItemTypeFn; /** * Enable production optimizations or development hints. */ export type Mode = "development" | "production" | "none"; /** * These values will be ignored by webpack and created to be used with '&&' or '||' to improve readability of configurations. */ export type Falsy = false | 0 | "" | null | undefined; /** * One or multiple rule conditions. */ export type RuleSetConditionOrConditions = RuleSetCondition | RuleSetConditions; /** * A condition matcher. */ export type RuleSetCondition = | RegExp | string | import("../lib/rules/RuleSetCompiler").RuleSetConditionFn | RuleSetLogicalConditions | RuleSetConditions; /** * A list of rule conditions. */ export type RuleSetConditions = RuleSetCondition[]; /** * One or multiple rule conditions matching an absolute path. */ export type RuleSetConditionOrConditionsAbsolute = RuleSetConditionAbsolute | RuleSetConditionsAbsolute; /** * A condition matcher matching an absolute path. */ export type RuleSetConditionAbsolute = | RegExp | string | import("../lib/rules/RuleSetCompiler").RuleSetConditionFn | RuleSetLogicalConditionsAbsolute | RuleSetConditionsAbsolute; /** * A list of rule conditions matching an absolute path. */ export type RuleSetConditionsAbsolute = RuleSetConditionAbsolute[]; /** * A loader request. */ export type RuleSetLoader = string; /** * Options passed to a loader. */ export type RuleSetLoaderOptions = | string | { [k: string]: any; }; /** * Redirect module requests. */ export type ResolveAlias = | { /** * New request. */ alias: string[] | false | string; /** * Request to be redirected. */ name: string; /** * Redirect only exact matching request. */ onlyModule?: boolean; }[] | { /** * New request. */ [k: string]: string[] | false | string; }; /** * Plugin instance. */ export type ResolvePluginInstance = | { /** * The run point of the plugin, required method. */ apply: (arg0: import("enhanced-resolve").Resolver) => void; [k: string]: any; } | (( this: import("enhanced-resolve").Resolver, arg1: import("enhanced-resolve").Resolver ) => void); /** * A list of descriptions of loaders applied. */ export type RuleSetUse = (Falsy | RuleSetUseItem)[] | RuleSetUseFunction | RuleSetUseItem; /** * A description of an applied loader. */ export type RuleSetUseItem = | { /** * Unique loader options identifier. */ ident?: string; /** * Loader name. */ loader?: RuleSetLoader; /** * Loader options. */ options?: RuleSetLoaderOptions; } | RuleSetUseFunction | RuleSetLoader; /** * The function is called on each data and return rule set item. */ export type RuleSetUseFunction = import("../lib/rules/RuleSetCompiler").RuleSetUseFn; /** * A list of rules. */ export type RuleSetRules = ("..." | Falsy | RuleSetRule)[]; /** * Specify options for each generator. */ export type GeneratorOptionsByModuleType = GeneratorOptionsByModuleTypeKnown & GeneratorOptionsByModuleTypeUnknown; /** * Don't parse files matching. It's matched against the full resolved request. */ export type NoParse = | (RegExp | string | import("../lib/NormalModule").NoParseFn)[] | RegExp | string | import("../lib/NormalModule").NoParseFn; /** * Specify options for each parser. */ export type ParserOptionsByModuleType = ParserOptionsByModuleTypeKnown & ParserOptionsByModuleTypeUnknown; /** * Name of the configuration. Used when loading multiple configurations. */ export type Name = string; /** * Include polyfills or mocks for various node stuff. */ export type Node = false | NodeOptions; /** * Function acting as plugin. */ export type WebpackPluginFunction = import("../lib/webpack").WebpackPluginFunction; /** * Create an additional chunk which contains only the webpack runtime and chunk hash maps. */ export type OptimizationRuntimeChunk = | ("single" | "multiple") | boolean | { /** * The name or name factory for the runtime chunks. */ name?: | string | import("../lib/optimize/RuntimeChunkPlugin").RuntimeChunkFunction; }; /** * A function returning cache groups. */ export type OptimizationSplitChunksGetCacheGroups = import("../lib/optimize/SplitChunksPlugin").RawGetCacheGroups; /** * Size description for limits. */ export type OptimizationSplitChunksSizes = | number | { /** * Size of the part of the chunk with the type of the key. */ [k: string]: number; }; /** * The filename of asset modules as relative path inside the 'output.path' directory. */ export type AssetModuleFilename = | string | import("../lib/TemplatedPathPlugin").TemplatePathFn< import("../lib/Compilation").PathDataModule >; /** * Add charset attribute for script tag. */ export type Charset = boolean; /** * Specifies the filename template of output files of non-initial chunks on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ export type ChunkFilename = FilenameTemplate; /** * The format of chunks (formats included by default are 'array-push' (web/WebWorker), 'commonjs' (node.js), 'module' (ESM), but others might be added by plugins). */ export type ChunkFormat = ("array-push" | "commonjs" | "module" | false) | string; /** * Number of milliseconds before chunk request expires. */ export type ChunkLoadTimeout = number; /** * The global variable used by webpack for loading of chunks. */ export type ChunkLoadingGlobal = string; /** * Clean the output directory before emit. */ export type Clean = boolean | CleanOptions; /** * Check if to be emitted file already exists and have the same content before writing to output filesystem. */ export type CompareBeforeEmit = boolean; /** * This option enables cross-origin loading of chunks. */ export type CrossOriginLoading = false | "anonymous" | "use-credentials"; /** * Specifies the filename template of non-initial output css files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ export type CssChunkFilename = FilenameTemplate; /** * Specifies the filename template of output css files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ export type CssFilename = FilenameTemplate; /** * Similar to `output.devtoolModuleFilenameTemplate`, but used in the case of duplicate module identifiers. */ export type DevtoolFallbackModuleFilenameTemplate = | string | import("../lib/ModuleFilenameHelpers").ModuleFilenameTemplateFunction; /** * Filename template string of function for the sources array in a generated SourceMap. */ export type DevtoolModuleFilenameTemplate = | string | import("../lib/ModuleFilenameHelpers").ModuleFilenameTemplateFunction; /** * Module namespace to use when interpolating filename template string for the sources array in a generated SourceMap. Defaults to `output.library` if not set. It's useful for avoiding runtime collisions in sourcemaps from multiple webpack projects built as libraries. */ export type DevtoolNamespace = string; /** * List of chunk loading types enabled for use by entry points. */ export type EnabledChunkLoadingTypes = ChunkLoadingType[]; /** * List of library types enabled for use by entry points. */ export type EnabledLibraryTypes = LibraryType[]; /** * List of wasm loading types enabled for use by entry points. */ export type EnabledWasmLoadingTypes = WasmLoadingType[]; /** * Specifies the filename of output files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ export type Filename = FilenameTemplate; /** * An expression which is used to address the global object/scope in runtime code. */ export type GlobalObject = string; /** * Digest types used for the hash. */ export type HashDigest = string; /** * Number of chars which are used for the hash. */ export type HashDigestLength = number; /** * Algorithm used for generation the hash (see node.js crypto package). */ export type HashFunction = string | typeof import("../lib/util/Hash"); /** * Any string which is added to the hash to salt it. */ export type HashSalt = string; /** * The filename of the Hot Update Chunks. They are inside the output.path directory. */ export type HotUpdateChunkFilename = string; /** * The global variable used by webpack for loading of hot update chunks. */ export type HotUpdateGlobal = string; /** * The filename of the Hot Update Main File. It is inside the 'output.path' directory. */ export type HotUpdateMainFilename = string; /** * Generate an HTML file for each non-HTML entrypoint with its JS and CSS output chunks injected. Can be overridden per entry via the entry descriptor `html` option. */ export type OutputHtml = boolean | OutputHtmlOptions; /** * Specifies the filename template of non-initial output html files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ export type HtmlChunkFilename = FilenameTemplate; /** * Specifies the filename template of output html files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ export type HtmlFilename = FilenameTemplate; /** * Wrap javascript code into IIFE's to avoid leaking into global scope. */ export type Iife = boolean; /** * The name of the native import() function (can be exchanged for a polyfill). */ export type ImportFunctionName = string; /** * The name of the native import.meta object (can be exchanged for a polyfill). */ export type ImportMetaName = string; /** * Make the output files a library, exporting the exports of the entry point. */ export type Library = LibraryName | LibraryOptions; /** * Output javascript files as module source type. */ export type OutputModule = boolean; /** * The output directory as **absolute path** (required). */ export type Path = string; /** * Include comments with information about the modules. */ export type Pathinfo = "verbose" | boolean; /** * Resource-hint (`<link rel="prefetch">` / `<link rel="preload">` / `<link rel="modulepreload">` / `<link rel="preconnect">`) emission for extracted HTML entries and URL-referenced assets. Accepts the initial-graph shorthand (boolean / `"prefetch"` / `"preload"` / `"none"` / `HtmlResourceHint[]` / function — equivalent to `{ initial: <value> }`) or the full object form `{ initial, urlHints, preconnect, modulePreloadPolyfill, manifest }`. `initial` defaults on for ESM output (`output.module`), where native `import()` would otherwise waterfall; classic output stays opt-in. * @since 5.109.0 */ export type ResourceHints = ResourceHintsInitial | ResourceHintsOptions; /** * Initial dependency-graph chunk hints. `true` auto-emits `<link rel="modulepreload">` (ESM output) or `<link rel="preload" as="script">` (classic) for each of the entry's initial dependency chunks; `"prefetch"` uses `<link rel="prefetch">`; `"preload"` is an alias of `true`; `false` disables chunk hints (URL-asset hints from magic comments / `urlHints` still fire); `"none"` is a hard off switch (no `<link>` anywhere, empty stats / manifest); an array of `HtmlResourceHint` descriptors replaces the auto set; a function receives the auto `defaultHints` plus context (`entryName`, `entrypoint`, `hostType: "html" | "js"`, `compilation`) and returns the final list (replaces the removed `resolveDependencies` hook). * @since 5.109.0 */ export type ResourceHintsInitial = | HtmlResourceHint[] | ("prefetch" | "preload" | "none") | boolean | ((context: { entryName: string; entrypoint: import("../lib/Entrypoint"); hostType: "html" | "js"; compilation: import("../lib/Compilation"); defaultHints: (import("../lib/dependencies/HtmlEntryDependency").HtmlResourceHint & { hostChunks: string[]; })[]; }) => import("../lib/dependencies/HtmlEntryDependency").HtmlResourceHint[]); /** * This option enables loading async chunks via a custom script type, such as script type="module". */ export type ScriptType = false | "text/javascript" | "module"; /** * The filename of the SourceMaps for the JavaScript files. They are inside the 'output.path' directory. */ export type SourceMapFilename = string; /** * Prefixes every line of the source in the bundle with this string. */ export type SourcePrefix = string; /** * Handles error in module loading correctly at a performance cost. This will handle module error compatible with the EcmaScript Modules spec. */ export type StrictModuleErrorHandling = boolean; /** * Handles exceptions in module loading correctly at a performance cost (Deprecated). This will handle module error compatible with the Node.js CommonJS way. */ export type StrictModuleExceptionHandling = boolean; /** * Emit a runtime check that throws a 'MODULE_NOT_FOUND' error when a required module id is missing from the bundle. */ export type StrictModuleResolution = boolean; /** * A unique name of the webpack build to avoid multiple webpack runtimes to conflict when using globals. */ export type UniqueName = string; /** * Fall back to non-streaming WebAssembly instantiation when streaming compilation fails because the server does not serve `.wasm` files with the `application/wasm` MIME type. * @since 5.109.0 */ export type WasmStreamingFallback = boolean; /** * The filename of WebAssembly modules as relative path inside the 'output.path' directory. */ export type WebassemblyModuleFilename = string; /** * Specifies the filename template of non-initial output worker's files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ export type WorkerChunkFilename = FilenameTemplate; /** * Worker public path. Much like the public path, this sets the location where the worker script file is intended to be found. If not set, webpack will use the publicPath. Don't set this option unless your worker scripts are located at a different path from your other script files. */ export type WorkerPublicPath = string; /** * The number of parallel processed modules in the compilation. */ export type Parallelism = number; /** * Configuration for web performance recommendations. */ export type Performance = false | PerformanceOptions; /** * Add additional plugins to the compiler. */ export type Plugins = (Falsy | WebpackPluginInstance | WebpackPluginFunction)[]; /** * Capture timing information for each module. */ export type Profile = boolean; /** * Store compiler state to a json file. */ export type RecordsInputPath = false | string; /** * Load compiler state from a json file. */ export type RecordsOutputPath = false | string; /** * Store/Load compiler state from/to a json file. This will result in persistent ids of modules and chunks. An absolute path is expected. `recordsPath` is used for `recordsInputPath` and `recordsOutputPath` if they left undefined. */ export type RecordsPath = false | string; /** * Options for the resolver. */ export type Resolve = ResolveOptions; /** * Options for the resolver when resolving loaders. */ export type ResolveLoader = ResolveOptions; /** * Stats options object or preset name. */ export type StatsValue = | ( | "none" | "summary" | "errors-only" | "errors-warnings" | "minimal" | "normal" | "detailed" | "verbose" ) | boolean | StatsOptions; /** * Filtering modules. */ export type ModuleFilterTypes = ModuleFilterItemTypes[] | ModuleFilterItemTypes; /** * Filtering value, regexp or function. */ export type ModuleFilterItemTypes = | RegExp | string | import("../lib/stats/DefaultStatsFactoryPlugin").ModuleFilterItemTypeFn; /** * Filtering modules. */ export type AssetFilterTypes = AssetFilterItemTypes[] | AssetFilterItemTypes; /** * Filtering value, regexp or function. */ export type AssetFilterItemTypes = | RegExp | string | import("../lib/stats/DefaultStatsFactoryPlugin").AssetFilterItemFn; /** * Filtering warnings. */ export type WarningFilterTypes = WarningFilterItemTypes[] | WarningFilterItemTypes; /** * Filtering value, regexp or function. */ export type WarningFilterItemTypes = | RegExp | string | import("../lib/stats/DefaultStatsPresetPlugin").WarningFilterFn; /** * Environment to build for. An array of environments to build for all of them when possible. */ export type Target = string[] | false | string; /** * Enable validation of webpack configuration. Defaults to true in development mode. In production mode, defaults to true unless futureDefaults is enabled, then defaults to false. */ export type Validate = boolean; /** * Enter watch mode, which rebuilds on file change. */ export type Watch = boolean; /** * The options for data url generator. */ export type AssetGeneratorDataUrl = AssetGeneratorDataUrlOptions | AssetGeneratorDataUrlFunction; /** * Function that executes for module and should return an DataUrl string. It can have a string as 'ident' property which contributes to the module hash. */ export type AssetGeneratorDataUrlFunction = import("../lib/asset/AssetGenerator").DataUrlFunction; /** * Generator options for asset modules. */ export type AssetGeneratorOptions = AssetInlineGeneratorOptions & AssetResourceGeneratorOptions; /** * Emit the asset in the specified folder relative to 'output.path'. This should only be needed when custom 'publicPath' is specified to match the folder structure there. */ export type AssetModuleOutputPath = | string | import("../lib/TemplatedPathPlugin").TemplatePathFn< import("../lib/Compilation").PathDataModule >; /** * Function that executes for module and should return whenever asset should be inlined as DataUrl. */ export type AssetParserDataUrlFunction = import("../lib/asset/AssetParser").AssetParserDataUrlFunction; /** * Enable/disable renaming of `@keyframes`. */ export type CssParserAnimation = boolean; /** * Configure how the CSS source is parsed: as a full stylesheet (default) or as a block's contents (e.g. the content of an HTML `style` attribute). */ export type CssParserAs = "stylesheet" | "block-contents"; /** * Enable/disable renaming of `@container` names. */ export type CssParserContainer = boolean; /** * Enable/disable renaming of custom identifiers. */ export type CssParserCustomIdents = boolean; /** * Enable/disable resolution of `@custom-media` at-rules (file-local build-time substitution). * @since 5.109.0 */ export type CssParserCustomMedia = boolean; /** * Enable/disable resolution of `@custom-selector` at-rules (file-local build-time expansion to `:is(...)`). * @since 5.109.0 */ export type CssParserCustomSelectors = boolean; /** * Enable/disable renaming of dashed identifiers, e. g. custom properties. */ export type CssParserDashedIdents = boolean; /** * Configure how CSS content is exported as default. */ export type CssParserExportType = "link" | "text" | "css-style-sheet" | "style"; /** * Auto-emit `<link rel="preload" as="font">` for the primary `src` URL of each `@font-face` reachable from an HTML entry's initial CSS. Only the first URL per `@font-face` is preloaded (preloading every format would double-download). Off by default; `parser.css.urlHints` rules and per-URL magic comments still override the seeded defaults. Set `output.crossOriginLoading` so the preload matches the font's CORS fetch. * @since 5.109.0 */ export type CssParserFontPreload = boolean; /** * Enable/disable renaming of `@function` names. */ export type CssParserFunction = boolean; /** * Enable/disable renaming of grid identifiers. */ export type CssParserGrid = boolean; /** * Enable/disable `@import` at-rules handling. */ export type CssParserImport = boolean; /** * Use ES modules named export for css exports. */ export type CssParserNamedExports = boolean; /** * Enable strict pure mode: every selector must contain at least one local class or id selector. */ export type CssParserPure = boolean; /** * Enable/disable `url()`/`image-set()`/`src()`/`image()` functions handling. */ export type CssParserUrl = boolean; /** * URL-referenced-asset default hint rules for this parser (JavaScript `new URL(...)`, CSS `url(...)`, HTML `<img src>` / `<link href>` / `<script src>`). * @since 5.109.0 */ export type UrlHints = UrlHintRule[]; /** * Configure the generated JS modules that use the ES modules syntax. */ export type CssGeneratorEsModule = boolean; /** * Specifies the convention of exported names. */ export type CssGeneratorExportsConvention = | ("as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only") | import("../lib/dependencies/CssIcssExportDependency").ExportsConventionFn; /** * Avoid generating and loading a stylesheet and only embed exports from css into output javascript files. */ export type CssGeneratorExportsOnly = boolean; /** * Configure the generated local ident name. */ export type CssGeneratorLocalIdentName = | string | import("../lib/TemplatedPathPlugin").TemplatePathFn< import("../lib/Compilation").PathDataModule >; /** * Options for defer import. */ export type DeferImportExperimentOptions = boolean; /** * A Function returning a Promise resolving to a normalized entry. */ export type EntryDynamicNormalized = import("../lib/DynamicEntryPlugin").EntryDynamic; /** * The entry point(s) of the compilation. */ export type EntryNormalized = EntryDynamicNormalized | EntryStaticNormalized; /** * How an external's exports interoperate with ES module imports, independent of the importing module's strictness (similar to Rollup's `output.interop`). 'default': treat as CommonJS, the default import is the whole exports (Node.js semantics). 'esModule': treat as an ES module namespace, the default import is unboxed to `.default`. * @since 5.109.0 */ export type ExternalItemInterop = "default" | "esModule"; /** * The dependency used for the external. */ export type ExternalItemValue = | string[] | boolean | string | (ExternalItemValueObjectKnown & ExternalItemValueObjectUnknown); /** * Configure how the HTML source is parsed: `"document"` (the default) parses a full page; any other value is the tag name of the context element to parse the source as that element's inner HTML (a fragment) — e.g. `"template"` for a neutral fragment, or `"tbody"` so context-sensitive tags like a bare `<tr>`/`<td>` are kept instead of dropped. * @since 5.109.0 */ export type HtmlParserAs = "document" | string; /** * Ignore specific warnings. */ export type IgnoreWarningsNormalized = import("../lib/IgnoreWarningsPlugin").IgnoreFn[]; /** * Enable/disable evaluating import.meta fields. Omitted fields are enabled and unknown fields are preserved. Custom fields are allowed. * @since 5.109.0 */ export type ImportMetaParserOptions = ImportMetaParserOptionsKnown & ImportMetaParserOptionsUnknown; /** * Create an additional chunk which contains only the webpack runtime and chunk hash maps. */ export type OptimizationRuntimeChunkNormalized = | false | { /** * The name factory for the runtime chunks. */ name?: import("../lib/optimize/RuntimeChunkPlugin").RuntimeChunkFunction; }; /** * Add additional plugins to the compiler. */ export type PluginsNormalized = ( WebpackPluginInstance | WebpackPluginFunction )[]; /** * Options object as provided by the user. */ export interface WebpackOptions { /** * Set the value of `require.amd` and `define.amd`. Or disable AMD support. */ amd?: Amd; /** * Report the first error as a hard error instead of tolerating it. */ bail?: Bail; /** * Cache generated modules and chunks to improve performance for multiple incremental builds. */ cache?: CacheOptions; /** * The base directory (absolute path!) for resolving the `entry` option. If `output.pathinfo` is set, the included pathinfo is shortened to this directory. */ context?: Context; /** * References to other configurations to depend on. */ dependencies?: Dependencies; /** * Options for the webpack-dev-server. */ devServer?: DevServer; /** * A developer tool to enhance debugging (false | eval | [inline-|hidden-|eval-][nosources-][cheap-[module-]]source-map). */ devtool?: DevTool; /** * Enable and configure the Dotenv plugin to load environment variables from .env files. */ dotenv?: Dotenv; /** * The entry point(s) of the compilation. */ entry?: Entry; /** * Enables/Disables experiments (experimental features with relax SemVer compatibility). */ experiments?: Experiments; /** * Extend configuration from another configuration (only works when using webpack-cli). */ extends?: Extends; /** * Specify dependencies that shouldn't be resolved by webpack, but should become dependencies of the resulting bundle. The kind of the dependency depends on `output.libraryTarget`. */ externals?: Externals; /** * Enable presets of externals for specific targets. */ externalsPresets?: ExternalsPresets; /** * Specifies the default type of externals ('amd*', 'umd*', 'system' and 'jsonp' depend on output.libraryTarget set to the same value). */ externalsType?: ExternalsType; /** * Ignore specific warnings. */ ignoreWarnings?: IgnoreWarnings; /** * Options for infrastructure level logging. */ infrastructureLogging?: InfrastructureLogging; /** * Custom values available in the loader context. */ loader?: Loader; /** * Enable production optimizations or development hints. */ mode?: Mode; /** * Options affecting the normal modules (`NormalModuleFactory`). */ module?: ModuleOptions; /** * Name of the configuration. Used when loading multiple configurations. */ name?: Name; /** * Include polyfills or mocks for various node stuff. */ node?: Node; /** * Enables/Disables integrated optimizations. */ optimization?: Optimization; /** * Options affecting the output of the compilation. `output` options tell webpack how to write the compiled files to disk. */ output?: Output; /** * The number of parallel processed modules in the compilation. */ parallelism?: Parallelism; /** * Configuration for web performance recommendations. */ performance?: Performance; /** * Add additional plugins to the compiler. */ plugins?: Plugins; /** * Capture timing information for each module. */ profile?: Profile; /** * Store compiler state to a json file. */ recordsInputPath?: RecordsInputPath; /** * Load compiler state from a json file. */ recordsOutputPath?: RecordsOutputPath; /** * Store/Load compiler state from/to a json file. This will result in persistent ids of modules and chunks. An absolute path is expected. `recordsPath` is used for `recordsInputPath` and `recordsOutputPath` if they left undefined. */ recordsPath?: RecordsPath; /** * Options for the resolver. */ resolve?: Resolve; /** * Options for the resolver when resolving loaders. */ resolveLoader?: ResolveLoader; /** * Options affecting how file system snapshots are created and validated. */ snapshot?: SnapshotOptions; /** * Stats options object or preset name. */ stats?: StatsValue; /** * Environment to build for. An array of environments to build for all of them when possible. */ target?: Target; /** * Enable validation of webpack configuration. Defaults to true in development mode. In production mode, defaults to true unless futureDefaults is enabled, then defaults to false. */ validate?: Validate; /** * Enter watch mode, which rebuilds on file change. */ watch?: Watch; /** * Options for the watcher. */ watchOptions?: WatchOptions; } /** * Options object for in-memory caching. */ export interface MemoryCacheOptions { /** * Additionally cache computation of modules that are unchanged and reference only unchanged modules. */ cacheUnaffected?: boolean; /** * Number of generations unused cache entries stay in memory cache at minimum (1 = may be removed after unused for a single compilation, ..., Infinity: kept forever). */ maxGenerations?: number; /** * In memory caching. */ type: "memory"; } /** * Options object for persistent file-based caching. */ export interface FileCacheOptions { /** * Allows to collect unused memory allocated during deserialization. This requires copying data into smaller buffers and has a performance cost. */ allowCollectingMemory?: boolean; /** * Dependencies the build depends on (in multiple categories, default categories: 'defaultWebpack'). */ buildDependencies?: { /** * List of dependencies the build depends on. */ [k: string]: string[]; }; /** * Base directory for the cache (defaults to node_modules/.cache/webpack). */ cacheDirectory?: string; /** * Locations for the cache (defaults to cacheDirectory / name). */ cacheLocation?: string; /** * Compression type used for the cache files. */ compression?: false | "gzip" | "brotli" | "zstd"; /** * Algorithm used for generation the hash (see node.js crypto package). */ hashAlgorithm?: string; /** * Time in ms after which idle period the cache storing should happen. */ idleTimeout?: number; /** * Time in ms after which idle period the cache storing should happen when larger changes has been detected (cumulative build time > 2 x avg cache store time). */ idleTimeoutAfterLargeChanges?: number; /** * Time in ms after which idle period the initial cache storing should happen. */ idleTimeoutForInitialStore?: number; /** * List of paths that are managed by a package manager and contain a version or hash in its path so all files are immutable. */ immutablePaths?: (RegExp | string)[]; /** * List of paths that are managed by a package manager and can be trusted to not be modified otherwise. */ managedPaths?: (RegExp | string)[]; /** * Time for which unused cache entries stay in the filesystem cache at minimum (in milliseconds). */ maxAge?: number; /** * Number of generations unused cache entries stay in memory cache at minimum (0 = no memory cache used, 1 = may be removed after unused for a single compilation, ..., Infinity: kept forever). Cache entries will be deserialized from disk when removed from memory cache. */ maxMemoryGenerations?: number; /** * Additionally cache computation of modules that are unchanged and reference only unchanged modules in memory. */ memoryCacheUnaffected?: boolean; /** * Name for the cache. Different names will lead to different coexisting caches. */ name?: string; /** * Track and log detailed timing information for individual cache items. */ profile?: boolean; /** * Enable/disable readonly mode. */ readonly?: boolean; /** * When to store data to the filesystem. (pack: Store data when compiler is idle in a single file). */ store?: "pack"; /** * Filesystem caching. */ type: "filesystem"; /** * Version of the cache data. Different versions won't allow to reuse the cache and override existing content. Update the version when config changed in a way which doesn't allow to reuse cache. This will invalidate the cache. */ version?: string; } /** * Options for Dotenv plugin. */ export interface DotenvPluginOptions { /** * The directory from which .env files are loaded. Can be an absolute path, false will disable the .env file loading. */ dir?: false | string; /** * Only expose environment variables that start with these prefixes. Defaults to 'WEBPACK_'. */ prefix?: string[] | string; /** * Template patterns for .env file names. Use [mode] as placeholder for the webpack mode. Defaults to ['.env', '.env.local', '.env.[mode]', '.env.[mode].local']. */ template?: string[]; } /** * Multiple entry bundles are created. The key is the entry name. The value can be a string, an array or an entry description object. */ export interface EntryObject { /** * An entry point with name. */ [k: string]: EntryItem | EntryDescription; } /** * An object with entry point description. */ export interface EntryDescription { /** * Enable/disable creating async chunks that are loaded on demand. */ asyncChunks?: boolean; /** * Base uri for this entry. */ baseUri?: string; /** * The method of loading chunks (methods included by default are 'jsonp' (web), 'import' (ESM), 'importScripts' (WebWorker), 'require' (sync node.js), 'async-node' (async node.js), but others might be added by plugins). */ chunkLoading?: ChunkLoading; /** * The entrypoints that the current entrypoint depend on. They must be loaded when this entrypoint is loaded. */ dependOn?: string[] | string; /** * Specifies the filename of the output file on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ filename?: EntryFilename; /** * Generate an HTML file for this entrypoint with its JS and CSS output chunks injected. An object overrides `output.html` option by option for this entry; `inline` is resolved once per generated page and can only be set on `output.html`. */ html?: boolean | OutputHtmlOptions; /** * Module(s) that are loaded upon startup. */ import: EntryItem; /** * Specifies the layer in which modules of this entrypoint are placed. */ layer?: Layer; /** * Options for library. */ library?: LibraryOptions; /** * The 'publicPath' specifies the public URL address of the output files when referenced in a browser. */ publicPath?: PublicPath; /** * The name of the runtime chunk. If set a runtime chunk with this name is created or an existing entrypoint is used as runtime. */ runtime?: EntryRuntime; /** * The method of loading WebAssembly Modules (methods included by default are 'fetch' (web/WebWorker), 'async-node' (node.js), but others might be added by plugins). */ wasmLoading?: WasmLoading; /** * Mark this entry as a worker so its output file uses 'output.workerChunkFilename'. */ worker?: boolean; } /** * Options for the generated HTML files. */ export interface OutputHtmlOptions { /** * Inject a `<base>` element into the page `<head>`. A string sets `href`; an object sets both `href` and optionally `target`. Skipped if the HTML already contains a `<base>` element. * @since 5.109.0 */ base?: | string | { /** * Value for the `href` attribute of the `<base>` element. */ href: string; /** * Value for the `target` attribute of the `<base>` element (e.g. `"_blank"`). */ target?: string; }; /** * Inject a `<meta http-equiv="Content-Security-Policy">` into every webpack-emitted HTML page. `false` (default) does nothing; `true` uses a strict baseline (`script-src 'self'`, `style-src 'self'`, `object-src 'none'`, `base-uri 'self'`) and appends a `sha256` hash of every inline `<script>`/`<style>` to `script-src`/`style-src`. An object customizes it. Skipped when the page already declares a CSP. */ csp?: | boolean | { /** * Hash algorithm used for inline `<script>`/`<style>` sources. */ hashFunction?: "sha256" | "sha384" | "sha512"; /** * Placeholder nonce added to injected `<script>`/`<style>` tags and as a `'nonce-…'` source; rewrite it per request server-side. */ nonce?: string; /** * CSP directives merged over the baseline. Each key is a directive (e.g. `"script-src"`); the value is a source string or list. Inline hashes and any `nonce` are still appended to `script-src`/`style-src`. */ policy?: { /** * A CSP source expression, or a list of them, for this directive. */ [k: string]: string[] | string; }; }; /** * Favicon(s) for webpack-generated HTML (authored pages are left untouched). `false` (default) injects nothing; `true` injects the webpack logo; a string is a path to an icon; an object maps each `<link rel>` to an icon — a path string, an object with the icon `href` plus extra link attributes (`sizes`, `media`, `color`, `type`, `crossorigin`), or an array of these for multiple icons under the same `rel` (e.g. several `sizes`, or light/dark `media` variants); a function receives the page name and returns one of these. Every icon is emitted as a hashed asset. * @since 5.109.0 */ favicon?: | boolean | string | { /** * Icon(s) for a single `<link rel>`: one icon or an array of icons. */ [k: string]: HtmlFaviconIcon[] | HtmlFaviconIcon; } | (( name: string ) => | boolean | string | {[rel: string]: HtmlFaviconIcon | HtmlFaviconIcon[]}); /** * Where to place injected chunk `<script>`/`<link>` tags. `"body"` (default; `"head"` with `output.module`) keeps them next to the entry tag — end of `<body>` on generated pages; `"head"` moves them into `<head>`; `false` suppresses sibling-chunk injection (entry tags and resource hints remain). * @since 5.109.0 */ inject?: ("body" | "head") | false; /** * Inline the content of matching chunks directly into the HTML instead of emitting a separate `<script>`/`<link>` tag. `true` inlines every chunk; `"script"` inlines only JavaScript, `"style"` only CSS; an array of `RegExp` patterns matches against the chunk name. * @since 5.109.0 */ inline?: RegExp[] | ("script" | "style") | boolean; /** * Add Subresource Integrity (SRI) `integrity` attributes to injected `<script>`/`<link>` tags. `true` uses `['sha384']`; an array sets the hash algorithms; a function receives each referenced asset and returns the algorithms to use or `false` to skip it. * @since 5.109.0 */ integrity?: | string[] | boolean | ((asset: { chunk: import("../lib/Chunk"); filename: string; }) => string[] | false); /** * Web app manifest for webpack-generated HTML (authored pages are left untouched). `false` (default) injects nothing. A string is a path to an existing `.webmanifest` file to link. An object is the manifest contents — serialized, emitted as a hashed `.webmanifest` and linked with `<link rel="manifest">`; its `icons`/`screenshots` `src` paths resolve like any request and are emitted as hashed assets. A function receives the page name and returns one of these. */ manifest?: | false | string | { [k: string]: any; } | ((name: string) => false | string | {[key: string]: EXPECTED_ANY}); /** * Inject `<meta>` tags into the page `<head>`. Each key is the `name` attribute (or `"charset"` for a charset declaration); the value is the `content` string. Keys beginning with `og:` use the `property` attribute instead of `name`. A tag is skipped if the HTML already contains a meta with the same name. * @since 5.109.0 */ meta?: { /** * Content string for the meta tag. */ [k: string]: string; }; /** * How injected `<script>` tags load. `auto` (default) emits a module script for ES module output and `defer` otherwise; `defer` forces a deferred script; `blocking` emits a plain blocking script. */ scriptLoading?: "auto" | "blocking" | "defer"; /** * Sets the `<title>` of the generated HTML page. Skipped if the HTML already contains a `<title>` element. * @since 5.109.0 */ title?: string; } /** * Options for library. */ export interface LibraryOptions { /** * Add a container for define/require functions in the AMD module. */ amdContainer?: AmdContainer; /** * Add a comment in the UMD wrapper. */ auxiliaryComment?: AuxiliaryComment; /** * Specify which export should be exposed as library. */ export?: LibraryExport; /** * The name of the library (some types allow unnamed libraries too). */ name?: LibraryName; /** * Type of library (types included by default are 'var', 'module', 'assign', 'assign-properties', 'this', 'window', 'self', 'global', 'commonjs', 'commonjs2', 'commonjs-module', 'commonjs-static', 'amd', 'amd-require', 'umd', 'umd2', 'jsonp', 'system', but others might be added by plugins). */ type: LibraryType; /** * If `output.libraryTarget` is set to umd and `output.library` is set, setting this to true will name the AMD module. */ umdNamedDefine?: UmdNamedDefine; } /** * Set explicit comments for `commonjs`, `commonjs2`, `amd`, and `root`. */ export interface LibraryCustomUmdCommentObject { /** * Set comment for `amd` section in UMD. */ amd?: string; /** * Set comment for `commonjs` (exports) section in UMD. */ commonjs?: string; /** * Set comment for `commonjs2` (module.exports) section in UMD. */ commonjs2?: string; /** * Set comment for `root` (global variable) section in UMD. */ root?: string; } /** * Description object for all UMD variants of the library name. */ export interface LibraryCustomUmdObject { /** * Name of the exposed AMD library in the UMD. */ amd?: string; /** * Name of the exposed commonjs export in the UMD. */ commonjs?: string; /** * Name of the property exposed globally by a UMD library. */ root?: string[] | string; } /** * Enables/Disables experiments (experimental features with relax SemVer compatibility). */ export interface Experiments { /** * Support WebAssembly as asynchronous EcmaScript Module. `"auto"` (the default) enables it unless a loader is registered for WebAssembly files. * @since 5.0.0 * @experimental */ asyncWebAssembly?: "auto" | boolean; /** * Enable backward-compat layer with deprecation warnings for many webpack 4 APIs. * @since 5.62.0 * @experimental */ backCompat?: boolean; /** * Build http(s): urls using a lockfile and resource content cache. * @since 5.49.0 * @experimental */ buildHttp?: HttpUriAllowedUris | HttpUriOptions; /** * Enable additional in memory caching of modules that are unchanged and reference only unchanged modules. * @since 5.54.0 * @experimental */ cacheUnaffected?: boolean; /** * Enable css support. `"auto"` (the default) enables the built-in CSS support unless a loader is registered for CSS files. * @since 5.66.0 * @experimental */ css?: "auto" | boolean; /** * Enable experimental tc39 proposal https://github.com/tc39/proposal-defer-import-eval. This allows to defer execution of a module until it's first use. * @since 5.100.0 * @experimental */ deferImport?: boolean; /** * Apply defaults of next major version. * @since 5.53.0 * @experimental */ futureDefaults?: boolean; /** * Enable HTML entry support. Treats `.html` files as a first-class module type so they can be used directly as entry points. `"auto"` (the default) enables it unless a loader is registered for HTML files. * @since 5.107.0 * @experimental */ html?: "auto" | boolean; /** * Compile entrypoints and import()s only when they are accessed. * @since 5.17.0 * @experimental */ lazyCompilation?: boolean | LazyCompilationOptions; /** * Allow output javascript files as module source type. * @since 5.0.0 * @experimental */ outputModule?: boolean; /** * Enable experimental tc39 proposal https://github.com/tc39/proposal-source-phase-imports. This allows importing modules at source phase. * @since 5.106.0 * @experimental */ sourceImport?: boolean; /** * Support WebAssembly as synchronous EcmaScript Module (outdated). * @since 5.0.0 * @experimental */ syncWebAssembly?: boolean; /** * Enable typescript support. `"auto"` (the default) enables the built-in TypeScript support when Node.js supports it (>= 22.6) and no loader is registered for TypeScript files. * @since 5.107.0 * @experimental */ typescript?: "auto" | boolean; [k: string]: any; } /** * Options for building http resources. */ export interface HttpUriOptions { /** * List of allowed URIs (resp. the beginning of them). */ allowedUris: HttpUriOptionsAllowedUris; /** * Location where resource content is stored for lockfile entries. It's also possible to disable storing by passing false. */ cacheLocation?: false | string; /** * When set, anything that would lead to a modification of the lockfile or any resource content, will result in an error. */ frozen?: boolean; /** * Location of the lockfile. */ lockfileLocation?: string; /** * Proxy configuration, which can be used to specify a proxy server to use for HTTP requests. */ proxy?: string; /** * When set, resources of existing lockfile entries will be fetched and entries will be upgraded when resource content has changed. */ upgrade?: boolean; } /** * Options for compiling entrypoints and import()s only when they are accessed. */ export interface LazyCompilationOptions { /** * Specifies the backend that should be used for handling client keep alive. */ backend?: | import("../lib/hmr/LazyCompilationPlugin").BackEnd | LazyCompilationDefaultBackendOptions; /** * Enable/disable lazy compilation for entries. */ entries?: boolean; /** * Enable/disable lazy compilation for import() modules. */ imports?: boolean; /** * Specify which entrypoints or import()ed modules should be lazily compiled. This is matched with the imported module and not the entrypoint name. */ test?: RegExp | string | import("../lib/hmr/LazyCompilationPlugin").TestFn; } /** * Options for the default backend. */ export interface LazyCompilationDefaultBackendOptions { /** * A custom client. */ client?: string; /** * Specifies where to listen to from the server. */ listen?: | number | import("net").ListenOptions | import("../lib/hmr/lazyCompilationBackend").Listen; /** * Specifies the protocol the client should use to connect to the server. */ protocol?: "http" | "https"; /** * Specifies how to create the server handling the EventSource requests. */ server?: | import("../lib/hmr/lazyCompilationBackend").HttpsServerOptions | import("../lib/hmr/lazyCompilationBackend").HttpServerOptions | import("../lib/hmr/lazyCompilationBackend").CreateServerFunction; } /** * Enable presets of externals for specific targets. */ export interface ExternalsPresets { /** * Treat bun built-in modules like 'bun', 'bun:sqlite' or 'bun:ffi' and node.js built-in modules as external and load them via import when used (for the Bun runtime). */ bun?: boolean; /** * Treat node.js built-in modules like fs, path or vm as external and load them via the required 'node:' specifier when used (for the Deno runtime). */ deno?: boolean; /** * Treat common electron built-in modules in main and preload context like 'electron', 'ipc' or 'shell' as external and load them via require() when used. */ electron?: boolean; /** * Treat electron built-in modules in the main context like 'app', 'ipc-main' or 'shell' as external and load them via require() when used. */ electronMain?: boolean; /** * Treat electron built-in modules in the preload context like 'web-frame', 'ipc-renderer' or 'shell' as external and load them via require() when used. */ electronPreload?: boolean; /** * Treat electron built-in modules in the renderer context like 'web-frame', 'ipc-renderer' or 'shell' as external and load them via require() when used. */ electronRenderer?: boolean; /** * Treat node.js built-in modules like fs, path or vm as external and load them via require() when used. */ node?: boolean; /** * Treat installed packages (requests resolving into a 'node_modules' directory) as external and load them via require()/import at runtime instead of bundling them (useful for server-side rendering builds). */ nodeModules?: | boolean | { /** * Keep these requests bundled instead of externalizing them. */ allowlist?: (RegExp | string | ((request: string) => boolean))[]; }; /** * Treat NW.js legacy nw.gui module as external and load it via require() when used. */ nwjs?: boolean; /** * Treat references to 'http(s)://...' and 'std:...' as external and load them via import when used (Note that this changes execution order as externals are executed before any other code in the chunk). */ web?: boolean; /** * Treat references to 'http(s)://...' and 'std:...' as external and load them via async import() when used (Note that this external type is an async module, which has various effects on the execution). */ webAsync?: boolean; } /** * Options for infrastructure level logging. */ export interface InfrastructureLogging { /** * Only appends lines to the output. Avoids updating existing output e. g. for status messages. This option is only used when no custom console is provided. */ appendOnly?: boolean; /** * Enables/Disables colorful output. This option is only used when no custom console is provided. */ colors?: boolean; /** * Custom console used for logging. */ console?: Console; /** * Enable debug logging for specific loggers. */ debug?: boolean | FilterTypes; /** * Log level. */ level?: "none" | "error" | "warn" | "info" | "log" | "verbose"; /** * Show build progress. `"auto"` shows it only for interactive terminals. This option is only used when no custom console is provided. * @since 5.109.0 */ progress?: "auto" | boolean; /** * Stream used for logging output. Defaults to process.stderr. This option is only used when no custom console is provided. */ stream?: NodeJS.WritableStream & { isTTY?: boolean; columns?: number; rows?: number; }; } /** * Custom values available in the loader context. */ export interface Loader { [k: string]: any; } /** * Options affecting the normal modules (`NormalModuleFactory`). */ export interface ModuleOptions { /** * An array of rules applied by default for modules. */ defaultRules?: RuleSetRules; /** * @deprecated * Enable warnings for full dynamic dependencies. */ exprContextCritical?: boolean; /** * @deprecated * Enable recursive directory lookup for full dynamic dependencies. Deprecated: This option has moved to 'module.parser.javascript.exprContextRecursive'. */ exprContextRecursive?: boolean; /** * @deprecated * Sets the default regular expression for full dynamic dependencies. Deprecated: This option has moved to 'module.parser.javascript.exprContextRegExp'. */ exprContextRegExp?: RegExp | boolean; /** * @deprecated * Set the default request for full dynamic dependencies. Deprecated: This option has moved to 'module.parser.javascript.exprContextRequest'. */ exprContextRequest?: string; /** * Specify options for each generator. */ generator?: GeneratorOptionsByModuleType; /** * Don't parse files matching. It's matched against the full resolved request. */ noParse?: NoParse; /** * Specify options for each parser. */ parser?: ParserOptionsByModuleType; /** * An array of rules applied for modules. */ rules?: RuleSetRules; /** * @deprecated * Emit errors instead of warnings when imported names don't exist in imported module. Deprecated: This option has moved to 'module.parser.javascript.strictExportPresence'. */ strictExportPresence?: boolean; /** * @deprecated * Handle the this context correctly according to the spec for namespace objects. Deprecated: This option has moved to 'module.parser.javascript.strictThisContextOnImports'. */ strictThisContextOnImports?: boolean; /** * @deprecated * Enable warnings when using the require function in a not statically analyse-able way. Deprecated: This option has moved to 'module.parser.javascript.unknownContextCritical'. */ unknownContextCritical?: boolean; /** * @deprecated * Enable recursive directory lookup when using the require function in a not statically analyse-able way. Deprecated: This option has moved to 'module.parser.javascript.unknownContextRecursive'. */ unknownContextRecursive?: boolean; /** * @deprecated * Sets the regular expression when using the require function in a not statically analyse-able way. Deprecated: This option has moved to 'module.parser.javascript.unknownContextRegExp'. */ unknownContextRegExp?: RegExp | boolean; /** * @deprecated * Sets the request when using the require function in a not statically analyse-able way. Deprecated: This option has moved to 'module.parser.javascript.unknownContextRequest'. */ unknownContextRequest?: string; /** * Cache the resolving of module requests. */ unsafeCache?: boolean | import("../lib/Compilation").UnsafeCachePredicate; /** * @deprecated * Enable warnings for partial dynamic dependencies. Deprecated: This option has moved to 'module.parser.javascript.wrappedContextCritical'. */ wrappedContextCritical?: boolean; /** * @deprecated * Enable recursive directory lookup for partial dynamic dependencies. Deprecated: This option has moved to 'module.parser.javascript.wrappedContextRecursive'. */ wrappedContextRecursive?: boolean; /** * @deprecated * Set the inner regular expression for partial dynamic dependencies. Deprecated: This option has moved to 'module.parser.javascript.wrappedContextRegExp'. */ wrappedContextRegExp?: RegExp; } /** * A rule description with conditions and effects for modules. */ export interface RuleSetRule { /** * Match on import assertions of the dependency. */ assert?: { [k: string]: RuleSetConditionOrConditions; }; /** * Match the child compiler name. */ compiler?: RuleSetConditionOrConditions; /** * Match dependency type. */ dependency?: RuleSetConditionOrConditions; /** * Match values of properties in the description file (usually package.json). */ descriptionData?: { [k: string]: RuleSetConditionOrConditions; }; /** * Enforce this rule as pre or post step. */ enforce?: "pre" | "post"; /** * Shortcut for resource.exclude. */ exclude?: RuleSetConditionOrConditionsAbsolute; /** * Enable/Disable extracting source map. */ extractSourceMap?: boolean; /** * The options for the module generator. */ generator?: { [k: string]: any; }; /** * Shortcut for resource.include. */ include?: RuleSetConditionOrConditionsAbsolute; /** * Match the issuer of the module (The module pointing to this module). */ issuer?: RuleSetConditionOrConditionsAbsolute; /** * Match layer of the issuer of this module (The module pointing to this module). */ issuerLayer?: RuleSetConditionOrConditions; /** * Specifies the layer in which the module should be placed in. */ layer?: string; /** * Shortcut for use.loader. */ loader?: RuleSetLoader; /** * Match module mimetype when load from Data URI. */ mimetype?: RuleSetConditionOrConditions; /** * Only execute the first matching rule in this array. */ oneOf?: (Falsy | RuleSetRule)[]; /** * Shortcut for use.options. */ options?: RuleSetLoaderOptions; /** * Options for parsing. */ parser?: { [k: string]: any; }; /** * Match the import phase of the dependency. */ phase?: RuleSetConditionOrConditions; /** * Match the real resource path of the module. */ realResource?: RuleSetConditionOrConditionsAbsolute; /** * Options for the resolver. */ resolve?: ResolveOptions; /** * Match the resource path of the module. */ resource?: RuleSetConditionOrConditionsAbsolute; /** * Match the resource fragment of the module. */ resourceFragment?: RuleSetConditionOrConditions; /** * Match the resource query of the module. */ resourceQuery?: RuleSetConditionOrConditions; /** * Match and execute these rules when this rule is matched. */ rules?: (Falsy | RuleSetRule)[]; /** * Match module scheme. */ scheme?: RuleSetConditionOrConditions; /** * Flags a module as with or without side effects. */ sideEffects?: boolean; /** * Shortcut for resource.test. */ test?: RuleSetConditionOrConditionsAbsolute; /** * Module type to use for the module. */ type?: string; /** * Modifiers applied to the module when rule is matched. */ use?: RuleSetUse; /** * Match on import attributes of the dependency. */ with?: { [k: string]: RuleSetConditionOrConditions; }; } /** * Logic operators used in a condition matcher. */ export interface RuleSetLogicalConditions { /** * Logical AND. */ and?: RuleSetConditions; /** * Logical NOT. */ not?: RuleSetCondition; /** * Logical OR. */ or?: RuleSetConditions; } /** * Logic operators used in a condition matcher. */ export interface RuleSetLogicalConditionsAbsolute { /** * Logical AND. */ and?: RuleSetConditionsAbsolute; /** * Logical NOT. */ not?: RuleSetConditionAbsolute; /** * Logical OR. */ or?: RuleSetConditionsAbsolute; } /** * Options object for resolving requests. */ export interface ResolveOptions { /** * Redirect module requests. */ alias?: ResolveAlias; /** * Fields in the description file (usually package.json) which are used to redirect requests inside the module. */ aliasFields?: (string[] | string)[]; /** * Extra resolve options per dependency category. Typical categories are "commonjs", "amd", "esm". */ byDependency?: { /** * Options object for resolving requests. */ [k: string]: ResolveOptions; }; /** * Enable caching of successfully resolved requests (cache entries are revalidated). */ cache?: boolean; /** * Predicate function to decide which requests should be cached. */ cachePredicate?: ( request: import("enhanced-resolve").ResolveRequest ) => boolean; /** * Include the context information in the cache identifier when caching. */ cacheWithContext?: boolean; /** * Condition names for exports field entry point. */ conditionNames?: string[]; /** * Filenames used to find a description file (like a package.json). */ descriptionFiles?: string[]; /** * Enforce the resolver to use one of the extensions from the extensions option (User must specify requests without extension). */ enforceExtension?: boolean; /** * Field names from the description file (usually package.json) which are used to provide entry points of a package. */ exportsFields?: string[]; /** * An object which maps extension to extension aliases. */ extensionAlias?: { /** * Extension alias. */ [k: string]: string[] | string; }; /** * Extensions added to the request when trying to find the file. */ extensions?: string[]; /** * Redirect module requests when normal resolving fails. */ fallback?: ResolveAlias; /** * Filesystem for the resolver. */ fileSystem?: import("../lib/util/fs").InputFileSystem; /** * Treats the request specified by the user as fully specified, meaning no extensions are added and the mainFiles in directories are not resolved (This doesn't affect requests from mainFields, aliasFields or aliases). */ fullySpecified?: boolean; /** * Field names from the description file (usually package.json) which are used to provide internal request of a package (requests starting with # are considered as internal). */ importsFields?: string[]; /** * Field names from the description file (package.json) which are used to find the default entry point. */ mainFields?: (string[] | string)[]; /** * Filenames used to find the default entry point if there is no description file or main field. */ mainFiles?: string[]; /** * Folder names or directory paths where to find modules. */ modules?: string[]; /** * Plugins for the resolver. */ plugins?: ("..." | Falsy | ResolvePluginInstance)[]; /** * Prefer to resolve server-relative URLs (starting with '/') as absolute paths before falling back to resolve in 'resolve.roots'. */ preferAbsolute?: boolean; /** * Prefer to resolve module requests as relative request and fallback to resolving as module. */ preferRelative?: boolean; /** * Custom resolver. */ resolver?: import("enhanced-resolve").Resolver; /** * A list of resolve restrictions. Resolve results must fulfill all of these restrictions to resolve successfully. Other resolve paths are taken when restrictions are not met. */ restrictions?: (RegExp | string)[]; /** * A list of directories in which requests that are server-relative URLs (starting with '/') are resolved. */ roots?: string[]; /** * Enable resolving symlinks to the original location. */ symlinks?: boolean; /** * TypeScript config for paths mapping. Can be `false` (disabled), `true` (use default `tsconfig.json`), a string path to `tsconfig.json`, or an object with `configFile` and `references` options. */ tsconfig?: | boolean | string | { /** * A path to the tsconfig file. */ configFile?: string; /** * References to other tsconfig files. 'auto' inherits from TypeScript config, or an array of relative/absolute paths. */ references?: "auto" | string; }; /** * Enable caching of successfully resolved requests (cache entries are not revalidated). */ unsafeCache?: | boolean | { [k: string]: any; }; /** * Use synchronous filesystem calls for the resolver. */ useSyncFileSystemCalls?: boolean; } /** * Options object for node compatibility features. */ export interface NodeOptions { /** * Include a polyfill for the '__dirname' variable. */ __dirname?: false | true | "warn-mock" | "mock" | "node-module" | "eval-only"; /** * Include a polyfill for the '__filename' variable. */ __filename?: false | true | "warn-mock" | "mock" | "node-module" | "eval-only"; /** * Include a polyfill for the 'global' variable. */ global?: false | true | "warn"; } /** * Enables/Disables integrated optimizations. */ export interface Optimization { /** * Avoid wrapping the entry module in an IIFE. */ avoidEntryIife?: boolean; /** * Check for incompatible wasm types when importing/exporting from/to ESM. */ checkWasmTypes?: boolean; /** * Define the algorithm to choose chunk ids (named: readable ids for better debugging, deterministic: numeric hash ids for better long term caching, size: numeric ids focused on minimal initial download size, total-size: numeric ids focused on minimal total download size, false: no algorithm used, as custom one can be provided via plugin). */ chunkIds?: "natural" | "named" | "deterministic" | "size" | "total-size" | false; /** * Concatenate modules when possible to generate less modules, more efficient code and enable more optimizations by the minimizer. An options object implies 'true'. */ concatenateModules?: boolean | ConcatenateModulesOptions; /** * Emit assets even when errors occur. Critical errors are emitted into the generated code and will cause errors at runtime. */ emitOnErrors?: boolean; /** * Also flag chunks as loaded which contain a subset of the modules. */ flagIncludedChunks?: boolean; /** * Inline ESM exports that bind to small primitive constants (≤6-byte null/undefined/boolean/number/string). Inlining makes the import dependency inactive so DCE can drop the export and possibly the module. */ inlineExports?: boolean; /** * Creates a module-internal dependency graph for top level symbols, exports and imports, to improve unused exports detection. */ innerGraph?: boolean; /** * Rename exports when possible to generate shorter code (depends on optimization.usedExports and optimization.providedExports, true/"deterministic": generate short deterministic names optimized for caching, "size": generate the shortest possible names). */ mangleExports?: ("size" | "deterministic") | boolean; /** * Reduce size of WASM by changing imports to shorter strings. */ mangleWasmImports?: boolean; /** * Merge chunks which contain the same modules. */ mergeDuplicateChunks?: boolean; /** * Enable minimizing the output. Uses optimization.minimizer. An object enables it and configures the built-in minimizer per asset type. */ minimize?: boolean | OptimizationMinimizeOptions; /** * Minimizer(s) to use for minimizing the output. */ minimizer?: ("..." | Falsy | WebpackPluginInstance | WebpackPluginFunction)[]; /** * Define the algorithm to choose module ids (natural: numeric ids in order of usage, named: readable ids for better debugging, hashed: (deprecated) short hashes as ids for better long term caching, deterministic: numeric hash ids for better long term caching, size: numeric ids focused on minimal initial download size, false: no algorithm used, as custom one can be provided via plugin). */ moduleIds?: "natural" | "named" | "hashed" | "deterministic" | "size" | false; /** * @deprecated * Avoid emitting assets when errors occur (deprecated: use 'emitOnErrors' instead). */ noEmitOnErrors?: boolean; /** * Set process.env.NODE_ENV to a specific value. */ nodeEnv?: false | string; /** * Generate records with relative paths to be able to move the context folder. */ portableRecords?: boolean; /** * Figure out which exports are provided by modules to generate more efficient code. */ providedExports?: boolean; /** * Use real [contenthash] based on final content of the assets. */ realContentHash?: boolean; /** * Removes modules from chunks when these modules are already included in all parents. */ removeAvailableModules?: boolean; /** * Remove chunks which are empty. */ removeEmptyChunks?: boolean; /** * Create an additional chunk which contains only the webpack runtime and chunk hash maps. */ runtimeChunk?: OptimizationRuntimeChunk; /** * Skip over modules which contain no side effects when exports are not used (false: disabled, 'flag': only use manually placed side effects flag, true: also analyse source code for side effects). */ sideEffects?: "flag" | boolean; /** * Optimize duplication and caching by splitting chunks by shared modules and cache group. */ splitChunks?: false | OptimizationSplitChunksOptions; /** * Figure out which exports are used by modules to mangle export names, omit unused exports and generate more efficient code (true: analyse used exports for each runtime, "global": analyse exports globally for all runtimes combined). */ usedExports?: "global" | boolean; } /** * Advanced options for module concatenation. * @since 5.109.0 */ export interface ConcatenateModulesOptions { /** * Also concatenate CommonJS modules with statically analyzable exports. Defaults to 'true'. */ commonjs?: boolean; } /** * Enable minimizing the output, configured per asset type. An absent type is minimized with the defaults; `false` disables minimizing it. * @since 5.110.0 */ export interface OptimizationMinimizeOptions { /** * Minimize CSS assets: `false` disables it, an object configures what the built-in minimizer may do beyond the transforms that always apply. */ css?: false | OptimizationMinimizeCss; /** * Minimize HTML assets: `false` disables it, an object configures what the built-in minimizer may do beyond the transforms that always apply. */ html?: false | OptimizationMinimizeHtml; /** * Minimize JavaScript assets: `false` disables it, an object is handed as-is to the JavaScript minimizer. */ javascript?: false | OptimizationMinimizeJavascript; } /** * What the CSS minimizer may do beyond the transforms that always apply. Applies wherever it runs: on `.css` assets and on the inline `<style>` / `style=""` the HTML minimizer hands it. * @since 5.110.0 */ export interface OptimizationMinimizeCss { /** * Rewrite a length into a shorter unit it is exactly equal in (`16px` -> `1pc`). Off by default: the authored unit is lost, and once the asset is compressed the rewrite rarely earns anything. * @since 5.110.0 */ convertLengthUnits?: boolean; } /** * What the HTML minimizer may do beyond the transforms that always apply. * @since 5.110.0 */ export interface OptimizationMinimizeHtml { /** * Collapse each run of whitespace in text to a single space. Left alone inside `pre`, `textarea` and `listing`, where whitespace renders verbatim, and never removed entirely — dropping it would join two inline elements that render apart. * @since 5.110.0 */ collapseWhitespace?: boolean; } /** * Options handed as-is to the JavaScript minimizer (terser-compatible). Defaults to `{ compress: { passes: 2 } }`. * @since 5.110.0 */ export interface OptimizationMinimizeJavascript { [k: string]: any; } /** * Plugin instance. */ export interface WebpackPluginInstance { /** * The run point of the plugin, required method. */ apply: import("../lib/webpack").WebpackPluginInstanceApplyFunction; [k: string]: any; } /** * Options object for splitting chunks into smaller chunks. */ export interface OptimizationSplitChunksOptions { /** * Sets the name delimiter for created chunks. */ automaticNameDelimiter?: string; /** * Assign modules to a cache group (modules from different cache groups are tried to keep in separate chunks, default categories: 'default', 'defaultVendors'). */ cacheGroups?: { /** * Configuration for a cache group. */ [k: string]: | false | RegExp | string | OptimizationSplitChunksGetCacheGroups | OptimizationSplitChunksCacheGroup; }; /** * Select chunks for determining shared modules (defaults to "async", "initial" and "all" requires adding these chunks to the HTML). */ chunks?: | ("initial" | "async" | "all") | RegExp | import("../lib/optimize/SplitChunksPlugin").ChunkFilterFn; /** * Sets the size types which are used when a number is used for sizes. */ defaultSizeTypes?: import("../lib/Module").SourceType[]; /** * Size threshold at which splitting is enforced and other restrictions (minRemainingSize, maxAsyncRequests, maxInitialRequests) are ignored. */ enforceSizeThreshold?: OptimizationSplitChunksSizes; /** * Options for modules not selected by any other cache group. */ fallbackCacheGroup?: { /** * Sets the name delimiter for created chunks. */ automaticNameDelimiter?: string; /** * Select chunks for determining shared modules (defaults to "async", "initial" and "all" requires adding these chunks to the HTML). */ chunks?: | ("initial" | "async" | "all") | RegExp | import("../lib/optimize/SplitChunksPlugin").ChunkFilterFn; /** * Maximal size hint for the on-demand chunks. */ maxAsyncSize?: OptimizationSplitChunksSizes; /** * Maximal size hint for the initial chunks. */ maxInitialSize?: OptimizationSplitChunksSizes; /** * Maximal size hint for the created chunks. */ maxSize?: OptimizationSplitChunksSizes; /** * Minimal size for the created chunk. */ minSize?: OptimizationSplitChunksSizes; /** * Minimum size reduction due to the created chunk. */ minSizeReduction?: OptimizationSplitChunksSizes; }; /** * Sets the template for the filename for created chunks. */ filename?: | string | import("../lib/TemplatedPathPlugin").TemplatePathFn< import("../lib/Compilation").PathDataChunk >; /** * Prevents exposing path info when creating names for parts splitted by maxSize. */ hidePathInfo?: boolean; /** * Maximum number of requests which are accepted for on-demand loading. */ maxAsyncRequests?: number; /** * Maximal size hint for the on-demand chunks. */ maxAsyncSize?: OptimizationSplitChunksSizes; /** * Maximum number of initial chunks which are accepted for an entry point. */ maxInitialRequests?: number; /** * Maximal size hint for the initial chunks. */ maxInitialSize?: OptimizationSplitChunksSizes; /** * Maximal size hint for the created chunks. */ maxSize?: OptimizationSplitChunksSizes; /** * Minimum number of times a module has to be duplicated until it's considered for splitting. */ minChunks?: number; /** * Minimal size for the chunks the stay after moving the modules to a new chunk. */ minRemainingSize?: OptimizationSplitChunksSizes; /** * Minimal size for the created chunks. */ minSize?: OptimizationSplitChunksSizes; /** * Minimum size reduction due to the created chunk. */ minSizeReduction?: OptimizationSplitChunksSizes; /** * Give chunks created a name (chunks with equal name are merged). */ name?: false | string | import("../lib/optimize/SplitChunksPlugin").GetNameFn; /** * Compare used exports when checking common modules. Modules will only be put in the same chunk when exports are equal. */ usedExports?: boolean; } /** * Options object for describing behavior of a cache group selecting modules that should be cached together. */ export interface OptimizationSplitChunksCacheGroup { /** * Sets the name delimiter for created chunks. */ automaticNameDelimiter?: string; /** * Select chunks for determining cache group content (defaults to "initial", "initial" and "all" requires adding these chunks to the HTML). */ chunks?: | ("initial" | "async" | "all") | RegExp | import("../lib/optimize/SplitChunksPlugin").ChunkFilterFn; /** * Ignore minimum size, minimum chunks and maximum requests and always create chunks for this cache group. */ enforce?: boolean; /** * Size threshold at which splitting is enforced and other restrictions (minRemainingSize, maxAsyncRequests, maxInitialRequests) are ignored. */ enforceSizeThreshold?: OptimizationSplitChunksSizes; /** * Sets the template for the filename for created chunks. */ filename?: | string | import("../lib/TemplatedPathPlugin").TemplatePathFn< import("../lib/Compilation").PathDataChunk >; /** * Sets the hint for chunk id. */ idHint?: string; /** * Assign modules to a cache group by module layer. */ layer?: | RegExp | string | import("../lib/optimize/SplitChunksPlugin").CheckModuleLayerFn; /** * Maximum number of requests which are accepted for on-demand loading. */ maxAsyncRequests?: number; /** * Maximal size hint for the on-demand chunks. */ maxAsyncSize?: OptimizationSplitChunksSizes; /** * Maximum number of initial chunks which are accepted for an entry point. */ maxInitialRequests?: number; /** * Maximal size hint for the initial chunks. */ maxInitialSize?: OptimizationSplitChunksSizes; /** * Maximal size hint for the created chunks. */ maxSize?: OptimizationSplitChunksSizes; /** * Minimum number of times a module has to be duplicated until it's considered for splitting. */ minChunks?: number; /** * Minimal size for the chunks the stay after moving the modules to a new chunk. */ minRemainingSize?: OptimizationSplitChunksSizes; /** * Minimal size for the created chunk. */ minSize?: OptimizationSplitChunksSizes; /** * Minimum size reduction due to the created chunk. */ minSizeReduction?: OptimizationSplitChunksSizes; /** * Give chunks for this cache group a name (chunks with equal name are merged). */ name?: false | string | import("../lib/optimize/SplitChunksPlugin").GetNameFn; /** * Priority of this cache group. */ priority?: number; /** * Try to reuse existing chunk (with name) when it has matching modules. */ reuseExistingChunk?: boolean; /** * Assign modules to a cache group by module name. */ test?: RegExp | string | import("../lib/optimize/SplitChunksPlugin").CheckTestFn; /** * Assign modules to a cache group by module type. */ type?: | RegExp | string | import("../lib/optimize/SplitChunksPlugin").CheckModuleTypeFn; /** * Compare used exports when checking common modules. Modules will only be put in the same chunk when exports are equal. */ usedExports?: boolean; } /** * Options affecting the output of the compilation. `output` options tell webpack how to write the compiled files to disk. */ export interface Output { /** * Add a container for define/require functions in the AMD module. */ amdContainer?: AmdContainer; /** * The filename of asset modules as relative path inside the 'output.path' directory. */ assetModuleFilename?: AssetModuleFilename; /** * Enable/disable creating async chunks that are loaded on demand. */ asyncChunks?: boolean; /** * Add a comment in the UMD wrapper. */ auxiliaryComment?: AuxiliaryComment; /** * Add charset attribute for script tag. */ charset?: Charset; /** * Specifies the filename template of output files of non-initial chunks on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ chunkFilename?: ChunkFilename; /** * The format of chunks (formats included by default are 'array-push' (web/WebWorker), 'commonjs' (node.js), 'module' (ESM), but others might be added by plugins). */ chunkFormat?: ChunkFormat; /** * Number of milliseconds before chunk request expires. */ chunkLoadTimeout?: ChunkLoadTimeout; /** * The method of loading chunks (methods included by default are 'jsonp' (web), 'import' (ESM), 'importScripts' (WebWorker), 'require' (sync node.js), 'async-node' (async node.js), but others might be added by plugins). */ chunkLoading?: ChunkLoading; /** * The global variable used by webpack for loading of chunks. */ chunkLoadingGlobal?: ChunkLoadingGlobal; /** * Clean the output directory before emit. */ clean?: Clean; /** * Check if to be emitted file already exists and have the same content before writing to output filesystem. */ compareBeforeEmit?: CompareBeforeEmit; /** * This option enables cross-origin loading of chunks. */ crossOriginLoading?: CrossOriginLoading; /** * Specifies the filename template of non-initial output css files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ cssChunkFilename?: CssChunkFilename; /** * Specifies the filename template of output css files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ cssFilename?: CssFilename; /** * Similar to `output.devtoolModuleFilenameTemplate`, but used in the case of duplicate module identifiers. */ devtoolFallbackModuleFilenameTemplate?: DevtoolFallbackModuleFilenameTemplate; /** * Filename template string of function for the sources array in a generated SourceMap. */ devtoolModuleFilenameTemplate?: DevtoolModuleFilenameTemplate; /** * Module namespace to use when interpolating filename template string for the sources array in a generated SourceMap. Defaults to `output.library` if not set. It's useful for avoiding runtime collisions in sourcemaps from multiple webpack projects built as libraries. */ devtoolNamespace?: DevtoolNamespace; /** * List of chunk loading types enabled for use by entry points. */ enabledChunkLoadingTypes?: EnabledChunkLoadingTypes; /** * List of library types enabled for use by entry points. */ enabledLibraryTypes?: EnabledLibraryTypes; /** * List of wasm loading types enabled for use by entry points. */ enabledWasmLoadingTypes?: EnabledWasmLoadingTypes; /** * The abilities of the environment where the webpack generated code should run. */ environment?: Environment; /** * Specifies the filename of output files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ filename?: Filename; /** * An expression which is used to address the global object/scope in runtime code. */ globalObject?: GlobalObject; /** * Digest types used for the hash. */ hashDigest?: HashDigest; /** * Number of chars which are used for the hash. */ hashDigestLength?: HashDigestLength; /** * Algorithm used for generation the hash (see node.js crypto package). */ hashFunction?: HashFunction; /** * Any string which is added to the hash to salt it. */ hashSalt?: HashSalt; /** * The filename of the Hot Update Chunks. They are inside the output.path directory. */ hotUpdateChunkFilename?: HotUpdateChunkFilename; /** * The global variable used by webpack for loading of hot update chunks. */ hotUpdateGlobal?: HotUpdateGlobal; /** * The filename of the Hot Update Main File. It is inside the 'output.path' directory. */ hotUpdateMainFilename?: HotUpdateMainFilename; /** * Generate an HTML file for each non-HTML entrypoint with its JS and CSS output chunks injected. Can be overridden per entry via the entry descriptor `html` option. */ html?: OutputHtml; /** * Specifies the filename template of non-initial output html files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ htmlChunkFilename?: HtmlChunkFilename; /** * Specifies the filename template of output html files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ htmlFilename?: HtmlFilename; /** * Ignore warnings in the browser. */ ignoreBrowserWarnings?: boolean; /** * Wrap javascript code into IIFE's to avoid leaking into global scope. */ iife?: Iife; /** * The name of the native import() function (can be exchanged for a polyfill). */ importFunctionName?: ImportFunctionName; /** * The name of the native import.meta object (can be exchanged for a polyfill). */ importMetaName?: ImportMetaName; /** * Make the output files a library, exporting the exports of the entry point. */ library?: Library; /** * Specify which export should be exposed as library. */ libraryExport?: LibraryExport; /** * Type of library (types included by default are 'var', 'module', 'assign', 'assign-properties', 'this', 'window', 'self', 'global', 'commonjs', 'commonjs2', 'commonjs-module', 'commonjs-static', 'amd', 'amd-require', 'umd', 'umd2', 'jsonp', 'system', but others might be added by plugins). */ libraryTarget?: LibraryType; /** * Output javascript files as module source type. */ module?: OutputModule; /** * The output directory as **absolute path** (required). */ path?: Path; /** * Include comments with information about the modules. */ pathinfo?: Pathinfo; /** * The 'publicPath' specifies the public URL address of the output files when referenced in a browser. */ publicPath?: PublicPath; /** * Resource-hint (`<link rel="prefetch">` / `<link rel="preload">` / `<link rel="modulepreload">` / `<link rel="preconnect">`) emission for extracted HTML entries and URL-referenced assets. Accepts the initial-graph shorthand (boolean / `"prefetch"` / `"preload"` / `"none"` / `HtmlResourceHint[]` / function — equivalent to `{ initial: <value> }`) or the full object form `{ initial, urlHints, preconnect, modulePreloadPolyfill, manifest }`. `initial` defaults on for ESM output (`output.module`), where native `import()` would otherwise waterfall; classic output stays opt-in. */ resourceHints?: ResourceHints; /** * This option enables loading async chunks via a custom script type, such as script type="module". */ scriptType?: ScriptType; /** * The filename of the SourceMaps for the JavaScript files. They are inside the 'output.path' directory. */ sourceMapFilename?: SourceMapFilename; /** * Prefixes every line of the source in the bundle with this string. */ sourcePrefix?: SourcePrefix; /** * Handles error in module loading correctly at a performance cost. This will handle module error compatible with the EcmaScript Modules spec. */ strictModuleErrorHandling?: StrictModuleErrorHandling; /** * @deprecated * Handles exceptions in module loading correctly at a performance cost (Deprecated). This will handle module error compatible with the Node.js CommonJS way. */ strictModuleExceptionHandling?: StrictModuleExceptionHandling; /** * Emit a runtime check that throws a 'MODULE_NOT_FOUND' error when a required module id is missing from the bundle. */ strictModuleResolution?: StrictModuleResolution; /** * Use a Trusted Types policy to create urls for chunks. 'output.uniqueName' is used a default policy name. Passing a string sets a custom policy name. */ trustedTypes?: true | string | TrustedTypes; /** * If `output.libraryTarget` is set to umd and `output.library` is set, setting this to true will name the AMD module. */ umdNamedDefine?: UmdNamedDefine; /** * A unique name of the webpack build to avoid multiple webpack runtimes to conflict when using globals. */ uniqueName?: UniqueName; /** * The method of loading WebAssembly Modules (methods included by default are 'fetch' (web/WebWorker), 'async-node' (node.js), but others might be added by plugins). */ wasmLoading?: WasmLoading; /** * Fall back to non-streaming WebAssembly instantiation when streaming compilation fails because the server does not serve `.wasm` files with the `application/wasm` MIME type. */ wasmStreamingFallback?: WasmStreamingFallback; /** * The filename of WebAssembly modules as relative path inside the 'output.path' directory. */ webassemblyModuleFilename?: WebassemblyModuleFilename; /** * Specifies the filename template of non-initial output worker's files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ workerChunkFilename?: WorkerChunkFilename; /** * The method of loading chunks (methods included by default are 'jsonp' (web), 'import' (ESM), 'importScripts' (WebWorker), 'require' (sync node.js), 'async-node' (async node.js), but others might be added by plugins). */ workerChunkLoading?: ChunkLoading; /** * Worker public path. Much like the public path, this sets the location where the worker script file is intended to be found. If not set, webpack will use the publicPath. Don't set this option unless your worker scripts are located at a different path from your other script files. */ workerPublicPath?: WorkerPublicPath; /** * The method of loading WebAssembly Modules (methods included by default are 'fetch' (web/WebWorker), 'async-node' (node.js), but others might be added by plugins). */ workerWasmLoading?: WasmLoading; } /** * Advanced options for cleaning assets. */ export interface CleanOptions { /** * Log the assets that should be removed instead of deleting them. */ dry?: boolean; /** * Keep these assets. */ keep?: RegExp | string | import("../lib/CleanPlugin").KeepFn; } /** * The abilities of the environment where the webpack generated code should run. */ export interface Environment { /** * The environment supports arrow functions ('() => { ... }'). */ arrowFunction?: boolean; /** * The environment supports async function and await ('async function () { await ... }'). */ asyncFunction?: boolean; /** * The environment supports BigInt as literal (123n). */ bigIntLiteral?: boolean; /** * The environment supports const and let for variable declarations. */ const?: boolean; /** * The environment supports 4- and 8-digit hex colors ('#rgba', '#rrggbbaa'). * @since 5.110.0 */ cssColorHexAlpha?: boolean; /** * The environment supports two positions on one gradient color stop ('red 0% 50%'). * @since 5.110.0 */ cssGradientDoublePosition?: boolean; /** * The environment supports the 'inset' shorthand property. * @since 5.110.0 */ cssInsetShorthand?: boolean; /** * The environment supports media query range syntax ('(width >= 600px)'). * @since 5.110.0 */ cssMediaQueryRange?: boolean; /** * The environment supports destructuring ('{ a, b } = obj'). */ destructuring?: boolean; /** * The environment supports 'document'. */ document?: boolean; /** * The environment supports an async import() function to import EcmaScript modules. */ dynamicImport?: boolean; /** * The environment supports an async import() is available when creating a worker. */ dynamicImportInWorker?: boolean; /** * The environment supports 'for of' iteration ('for (const x of array) { ... }'). */ forOf?: boolean; /** * The environment supports generator functions and yield ('function* () { yield ... }'). * @since 5.109.0 */ generator?: boolean; /** * The environment supports 'globalThis'. */ globalThis?: boolean; /** * The environment supports 'Object.hasOwn'. */ hasOwn?: boolean; /** * The environment supports `import.meta.dirname` and `import.meta.filename`. */ importMetaDirnameAndFilename?: boolean; /** * The environment supports let for variable declarations. */ let?: boolean; /** * The environment supports logical assignment operators ('a ||= b', 'a &&= b', 'a ??= b'). */ logicalAssignment?: boolean; /** * The environment supports object method shorthand ('{ module() {} }'). */ methodShorthand?: boolean; /** * The environment supports EcmaScript Module syntax to import EcmaScript modules (import ... from '...'). */ module?: boolean; /** * The environment supports `<link rel="modulepreload">` to preload EcmaScript modules. * @since 5.109.0 */ modulePreload?: boolean; /** * The environment supports `process.getBuiltinModule()` to synchronously load Node.js core modules. */ nodeBuiltinModuleGetter?: boolean; /** * The environment supports `node:` prefix for Node.js core modules. */ nodePrefixForCoreModules?: boolean; /** * The environment supports optional chaining ('obj?.a' or 'obj?.()'). */ optionalChaining?: boolean; /** * The environment supports spread and rest in array/object literals and calls ('{ ...obj }', 'fn(...args)'). */ spread?: boolean; /** * The environment supports 'Symbol' (and well-known symbols like 'Symbol.toStringTag'). */ symbol?: boolean; /** * The environment supports template literals. */ templateLiteral?: boolean; } /** * A custom resource-hint `<link>` for `output.html.resourceHints`. Exactly one of `href` / `chunk` / `entry` names the target. * @since 5.109.0 */ export interface HtmlResourceHint { /** * The `as` attribute (`script`, `style`, `font`, …); defaults to `script` for chunk/entry references. */ as?: string; /** * Name of a chunk to hint; its emitted URL is resolved automatically. */ chunk?: string; /** * The CORS mode; `true` maps to `anonymous`. */ crossorigin?: ("anonymous" | "use-credentials") | boolean; /** * Name of an entrypoint to hint; expands to one hint per initial chunk. */ entry?: string; /** * The `fetchpriority` attribute. Emitted on `preload` / `modulepreload` and on `prefetch` (the spec now permits it there). */ fetchPriority?: "low" | "high" | "auto"; /** * A literal URL used verbatim (external resource, `preconnect` origin, or an already-hashed asset). */ href?: string; /** * Subresource Integrity for a chunk/entry reference. Follows `output.html.integrity` by default; set `false` to opt this hint out. */ integrity?: boolean; /** * The `media` attribute. */ media?: string; /** * The `rel` of the resource hint. */ rel: "preload" | "prefetch" | "modulepreload" | "preconnect" | "dns-prefetch"; /** * The `type` attribute (MIME type). */ type?: string; } /** * Full resource-hint configuration. * @since 5.109.0 */ export interface ResourceHintsOptions { /** * Skip the runtime-injected `<link rel="prefetch">` for a chunk that is already preloaded or prefetched in the document (avoids a duplicate request in some browsers such as Chrome). */ dedupe?: boolean; /** * Initial dependency-graph chunk hints. `true` auto-emits `<link rel="modulepreload">` (ESM output) or `<link rel="preload" as="script">` (classic) for each of the entry's initial dependency chunks; `"prefetch"` uses `<link rel="prefetch">`; `"preload"` is an alias of `true`; `false` disables chunk hints (URL-asset hints from magic comments / `urlHints` still fire); `"none"` is a hard off switch (no `<link>` anywhere, empty stats / manifest); an array of `HtmlResourceHint` descriptors replaces the auto set; a function receives the auto `defaultHints` plus context (`entryName`, `entrypoint`, `hostType: "html" | "js"`, `compilation`) and returns the final list (replaces the removed `resolveDependencies` hook). * @since 5.109.0 */ initial?: ResourceHintsInitial; /** * Emit a JSON manifest of the resolved resource hints for each entrypoint (the same descriptors as `stats.entrypoints[].resourceHints`) as an output asset at this path. Lets an SSR server inject the `<link>` tags itself without walking the chunk graph — webpack's analogue of Vite's `build.ssrManifest`. Empty when `initial` is `"none"`. */ manifest?: string; /** * Inject a tiny inline `<script>` polyfill for `<link rel="modulepreload">` into extracted HTML pages. Defaults from the target's modulepreload support (`output.environment.modulePreload`) — `true` when the environment lacks native support, `false` when it has it. Set `false` to never inject (the `<link>` tags are still emitted but do nothing on browsers without support — useful under a strict CSP that forbids inline scripts). */ modulePreloadPolyfill?: boolean; /** * Auto-emit `<link rel="preconnect">` for the origin of a cross-origin `output.publicPath` (the origin bundles and assets are served from) into extracted HTML entries and the resource-hint stats / manifest. Mirrors `output.crossOriginLoading`. No-op when `publicPath` is relative or `"auto"`. */ preconnect?: boolean; /** * Project-wide URL-referenced-asset hint rules, applied as the base `urlHints` of every parser (JavaScript `new URL(...)`, CSS `url(...)`, HTML `<img src>` / `<link href>`). Parser-scoped `module.parser.<type>.urlHints` rules and per-URL magic comments still override these. */ urlHints?: UrlHintRule[]; } /** * One default-hint rule for URL-referenced assets emitted by this parser (JS `new URL(...)`, CSS `url(...)`, HTML `<img src>` / `<link href>` / `<script src>`). `test` / `include` / `exclude` match against the asset's request; omit all three to apply to every asset. Matching rules set the same fields a `webpackPrefetch` / `webpackPreload` / `webpackAs` / `webpackType` / `webpackMedia` / `webpackFetchPriority` magic comment would; explicit magic comments on the same URL still win. * @since 5.109.0 */ export interface UrlHintRule { /** * Default `as` attribute (script / style / font / image / …). */ as?: string; /** * A condition matcher. */ exclude?: RuleSetCondition; /** * Default fetchpriority for prefetch / preload links. */ fetchPriority?: "low" | "high" | "auto" | false; /** * A condition matcher. */ include?: RuleSetCondition; /** * Default `media` attribute (e.g. `"(min-width: 800px)"`). */ media?: string; /** * When true, emit `<link rel="prefetch">` for matching assets without an explicit hint comment. */ prefetch?: boolean; /** * When true, emit `<link rel="preload">` for matching assets without an explicit hint comment. */ preload?: boolean; /** * A condition matcher. */ test?: RuleSetCondition; /** * Default `type` attribute (MIME). */ type?: string; } /** * Use a Trusted Types policy to create urls for chunks. */ export interface TrustedTypes { /** * If the call to `trustedTypes.createPolicy(...)` fails -- e.g., due to the policy name missing from the CSP `trusted-types` list, or it being a duplicate name, etc. -- controls whether to continue with loading in the hope that `require-trusted-types-for 'script'` isn't enforced yet, versus fail immediately. Default behavior is 'stop'. */ onPolicyCreationFailure?: "continue" | "stop"; /** * The name of the Trusted Types policy created by webpack to serve bundle chunks. */ policyName?: string; } /** * Configuration object for web performance recommendations. */ export interface PerformanceOptions { /** * Filter function to select assets that are checked. */ assetFilter?: import("../lib/performance/SizeLimitsPlugin").AssetFilter; /** * Sets the format of the hints: warnings, errors or nothing at all. */ hints?: false | "warning" | "error"; /** * File size limit (in bytes) when exceeded, that webpack will provide performance hints. */ maxAssetSize?: number; /** * Total size of an entry point (in bytes). */ maxEntrypointSize?: number; } /** * Options affecting how file system snapshots are created and validated. */ export interface SnapshotOptions { /** * Options for snapshotting build dependencies to determine if the whole cache need to be invalidated. */ buildDependencies?: { /** * Use hashes of the content of the files/directories to determine invalidation. */ hash?: boolean; /** * Use timestamps of the files/directories to determine invalidation. */ timestamp?: boolean; }; /** * Options for snapshotting the context module to determine if it needs to be built again. */ contextModule?: { /** * Use hashes of the content of the files/directories to determine invalidation. */ hash?: boolean; /** * Use timestamps of the files/directories to determine invalidation. */ timestamp?: boolean; }; /** * List of paths that are managed by a package manager and contain a version or hash in its path so all files are immutable. */ immutablePaths?: (RegExp | string)[]; /** * List of paths that are managed by a package manager and can be trusted to not be modified otherwise. */ managedPaths?: (RegExp | string)[]; /** * Options for snapshotting dependencies of modules to determine if they need to be built again. */ module?: { /** * Use hashes of the content of the files/directories to determine invalidation. */ hash?: boolean; /** * Use timestamps of the files/directories to determine invalidation. */ timestamp?: boolean; }; /** * Options for snapshotting dependencies of request resolving to determine if requests need to be re-resolved. */ resolve?: { /** * Use hashes of the content of the files/directories to determine invalidation. */ hash?: boolean; /** * Use timestamps of the files/directories to determine invalidation. */ timestamp?: boolean; }; /** * Options for snapshotting the resolving of build dependencies to determine if the build dependencies need to be re-resolved. */ resolveBuildDependencies?: { /** * Use hashes of the content of the files/directories to determine invalidation. */ hash?: boolean; /** * Use timestamps of the files/directories to determine invalidation. */ timestamp?: boolean; }; /** * List of paths that are not managed by a package manager and the contents are subject to change. */ unmanagedPaths?: (RegExp | string)[]; } /** * Stats options object. */ export interface StatsOptions { /** * Fallback value for stats options when an option is not defined (has precedence over local webpack defaults). */ all?: boolean; /** * Add assets information. */ assets?: boolean; /** * Sort the assets by that field. */ assetsSort?: false | string; /** * Space to display assets (groups will be collapsed to fit this space). */ assetsSpace?: number; /** * Add built at time information. */ builtAt?: boolean; /** * @deprecated * Add information about cached (not built) modules (deprecated: use 'cachedModules' instead). */ cached?: boolean; /** * Show cached assets (setting this to `false` only shows emitted files). */ cachedAssets?: boolean; /** * Add information about cached (not built) modules. */ cachedModules?: boolean; /** * Add children information. */ children?: StatsValue[] | StatsValue; /** * Display auxiliary assets in chunk groups. */ chunkGroupAuxiliary?: boolean; /** * Display children of chunk groups. */ chunkGroupChildren?: boolean; /** * Limit of assets displayed in chunk groups. */ chunkGroupMaxAssets?: number; /** * Include the resolved `<link>` resource-hint descriptors for each entrypoint (`entrypoints[name].resourceHints`). Combines `output.resourceHints.chunks` (initial-graph modulepreload/preload/prefetch) with `output.resourceHints.assets` (URL-referenced fonts / images / …). Lets SSR frameworks inject the hints server-side without walking the chunk graph themselves; the analogue of Vite's `build.ssrManifest`. * @since 5.109.0 */ chunkGroupResourceHints?: boolean; /** * Display all chunk groups with the corresponding bundles. */ chunkGroups?: boolean; /** * Add built modules information to chunk information. */ chunkModules?: boolean; /** * Space to display chunk modules (groups will be collapsed to fit this space, value is in number of modules/group). */ chunkModulesSpace?: number; /** * Add the origins of chunks and chunk merging info. */ chunkOrigins?: boolean; /** * Add information about parent, children and sibling chunks to chunk information. */ chunkRelations?: boolean; /** * Add chunk information. */ chunks?: boolean; /** * Sort the chunks by that field. */ chunksSort?: false | string; /** * Enables/Disables colorful output. */ colors?: | boolean | { /** * Custom color for bold text. */ bold?: string; /** * Custom color for cyan text. */ cyan?: string; /** * Custom color for green text. */ green?: string; /** * Custom color for magenta text. */ magenta?: string; /** * Custom color for red text. */ red?: string; /** * Custom color for yellow text. */ yellow?: string; }; /** * Context directory for request shortening. */ context?: string; /** * Show chunk modules that are dependencies of other modules of the chunk. */ dependentModules?: boolean; /** * Add module depth in module graph. */ depth?: boolean; /** * Display the entry points with the corresponding bundles. */ entrypoints?: "auto" | boolean; /** * Add --env information. */ env?: boolean; /** * Add cause to errors. */ errorCause?: "auto" | boolean; /** * Add details to errors (like resolving log). */ errorDetails?: "auto" | boolean; /** * Add nested errors to errors (like in AggregateError). */ errorErrors?: "auto" | boolean; /** * Add internal stack trace to errors. */ errorStack?: boolean; /** * Add errors. */ errors?: boolean; /** * Add errors count. */ errorsCount?: boolean; /** * Space to display errors (value is in number of lines). */ errorsSpace?: number; /** * Please use excludeModules instead. */ exclude?: boolean | ModuleFilterTypes; /** * Suppress assets that match the specified filters. Filters can be Strings, RegExps or Functions. */ excludeAssets?: AssetFilterTypes; /** * Suppress modules that match the specified filters. Filters can be Strings, RegExps, Booleans or Functions. */ excludeModules?: boolean | ModuleFilterTypes; /** * Group assets by how their are related to chunks. */ groupAssetsByChunk?: boolean; /** * Group assets by their status (emitted, compared for emit or cached). */ groupAssetsByEmitStatus?: boolean; /** * Group assets by their extension. */ groupAssetsByExtension?: boolean; /** * Group assets by their asset info (immutable, development, hotModuleReplacement, etc). */ groupAssetsByInfo?: boolean; /** * Group assets by their path. */ groupAssetsByPath?: boolean; /** * Group modules by their attributes (errors, warnings, assets, optional, orphan, or dependent). */ groupModulesByAttributes?: boolean; /** * Group modules by their status (cached or built and cacheable). */ groupModulesByCacheStatus?: boolean; /** * Group modules by their extension. */ groupModulesByExtension?: boolean; /** * Group modules by their layer. */ groupModulesByLayer?: boolean; /** * Group modules by their path. */ groupModulesByPath?: boolean; /** * Group modules by their type. */ groupModulesByType?: boolean; /** * Group reasons by their origin module. */ groupReasonsByOrigin?: boolean; /** * Add the hash of the compilation. */ hash?: boolean; /** * Add ids. */ ids?: boolean; /** * Add logging output. */ logging?: ("none" | "error" | "warn" | "info" | "log" | "verbose") | boolean; /** * Include debug logging of specified loggers (i. e. for plugins or loaders). Filters can be Strings, RegExps or Functions. */ loggingDebug?: boolean | FilterTypes; /** * Add stack traces to logging output. */ loggingTrace?: boolean; /** * Add information about assets inside modules. */ moduleAssets?: boolean; /** * Add dependencies and origin of warnings/errors. */ moduleTrace?: boolean; /** * Add built modules information. */ modules?: boolean; /** * Sort the modules by that field. */ modulesSort?: false | string; /** * Space to display modules (groups will be collapsed to fit this space, value is in number of modules/groups). */ modulesSpace?: number; /** * Add information about modules nested in other modules (like with module concatenation). */ nestedModules?: boolean; /** * Space to display modules nested within other modules (groups will be collapsed to fit this space, value is in number of modules/group). */ nestedModulesSpace?: number; /** * Show reasons why optimization bailed out for modules. */ optimizationBailout?: boolean; /** * Add information about orphan modules. */ orphanModules?: boolean; /** * Add output path information. */ outputPath?: boolean; /** * Add performance hint flags. */ performance?: boolean; /** * Preset for the default values. */ preset?: boolean | string; /** * Show exports provided by modules. */ providedExports?: boolean; /** * Add public path information. */ publicPath?: boolean; /** * Add information about the reasons why modules are included. */ reasons?: boolean; /** * Space to display reasons (groups will be collapsed to fit this space). */ reasonsSpace?: number; /** * Add information about assets that are related to other assets (like SourceMaps for assets). */ relatedAssets?: boolean; /** * @deprecated * Add information about runtime modules (deprecated: use 'runtimeModules' instead). */ runtime?: boolean; /** * Add information about runtime modules. */ runtimeModules?: boolean; /** * Add the source code of modules. */ source?: boolean; /** * Add timing information. */ timings?: boolean; /** * Show exports used by modules. */ usedExports?: boolean; /** * Add webpack version information. */ version?: boolean; /** * Add warnings. */ warnings?: boolean; /** * Add warnings count. */ warningsCount?: boolean; /** * Suppress listing warnings that match the specified filters (they will still be counted). Filters can be Strings, RegExps or Functions. */ warningsFilter?: WarningFilterTypes; /** * Space to display warnings (value is in number of lines). */ warningsSpace?: number; } /** * Options for the watcher. */ export interface WatchOptions { /** * Delay the rebuilt after the first change. Value is a time in ms. */ aggregateTimeout?: number; /** * Resolve symlinks and watch symlink and real file. This is usually not needed as webpack already resolves symlinks ('resolve.symlinks'). */ followSymlinks?: boolean; /** * Ignore some files from watching (glob pattern or regexp). */ ignored?: string[] | RegExp | string; /** * Enable polling mode for watching. */ poll?: number | boolean; /** * Stop watching when stdin stream has ended. */ stdin?: boolean; } /** * Options object for data url generation. */ export interface AssetGeneratorDataUrlOptions { /** * Asset encoding (defaults to base64). */ encoding?: false | "base64"; /** * Asset mimetype (getting from file extension by default). */ mimetype?: string; } /** * Generator options for asset/inline modules. */ export interface AssetInlineGeneratorOptions { /** * Whether or not this asset module should be considered binary. This can be set to 'false' to treat this asset module as text. */ binary?: boolean; /** * The options for data url generator. */ dataUrl?: AssetGeneratorDataUrl; } /** * Options object for DataUrl condition. */ export interface AssetParserDataUrlOptions { /** * Maximum size of asset that should be inline as modules. Default: 8kb. */ maxSize?: number; } /** * Parser options for asset modules. */ export interface AssetParserOptions { /** * The condition for inlining the asset as DataUrl. */ dataUrlCondition?: AssetParserDataUrlOptions | AssetParserDataUrlFunction; } /** * Generator options for asset/resource modules. */ export interface AssetResourceGeneratorOptions { /** * Whether or not this asset module should be considered binary. This can be set to 'false' to treat this asset module as text. */ binary?: boolean; /** * Emit an output asset from this asset module. This can be set to 'false' to omit emitting e. g. for SSR. */ emit?: boolean; /** * The filename of asset modules as relative path inside the 'output.path' directory. */ filename?: AssetModuleFilename; /** * Emit the asset in the specified folder relative to 'output.path'. This should only be needed when custom 'publicPath' is specified to match the folder structure there. */ outputPath?: AssetModuleOutputPath; /** * The 'publicPath' specifies the public URL address of the output files when referenced in a browser. */ publicPath?: RawPublicPath; } /** * Parser options for css/auto and css/module modules. */ export interface CssAutoOrModuleParserOptions { /** * Enable/disable renaming of `@keyframes`. */ animation?: CssParserAnimation; /** * Configure how the CSS source is parsed: as a full stylesheet (default) or as a block's contents (e.g. the content of an HTML `style` attribute). */ as?: CssParserAs; /** * Enable/disable renaming of `@container` names. */ container?: CssParserContainer; /** * Enable/disable renaming of custom identifiers. */ customIdents?: CssParserCustomIdents; /** * Enable/disable resolution of `@custom-media` at-rules (file-local build-time substitution). */ customMedia?: CssParserCustomMedia; /** * Enable/disable resolution of `@custom-selector` at-rules (file-local build-time expansion to `:is(...)`). */ customSelectors?: CssParserCustomSelectors; /** * Enable/disable renaming of dashed identifiers, e. g. custom properties. */ dashedIdents?: CssParserDashedIdents; /** * Configure how CSS content is exported as default. */ exportType?: CssParserExportType; /** * Auto-emit `<link rel="preload" as="font">` for the primary `src` URL of each `@font-face` reachable from an HTML entry's initial CSS. Only the first URL per `@font-face` is preloaded (preloading every format would double-download). Off by default; `parser.css.urlHints` rules and per-URL magic comments still override the seeded defaults. Set `output.crossOriginLoading` so the preload matches the font's CORS fetch. */ fontPreload?: CssParserFontPreload; /** * Enable/disable renaming of `@function` names. */ function?: CssParserFunction; /** * Enable/disable renaming of grid identifiers. */ grid?: CssParserGrid; /** * Enable/disable `@import` at-rules handling. */ import?: CssParserImport; /** * Use ES modules named export for css exports. */ namedExports?: CssParserNamedExports; /** * Enable strict pure mode: every selector must contain at least one local class or id selector. */ pure?: CssParserPure; /** * Enable/disable `url()`/`image-set()`/`src()`/`image()` functions handling. */ url?: CssParserUrl; /** * URL-referenced-asset default hint rules for this parser (JavaScript `new URL(...)`, CSS `url(...)`, HTML `<img src>` / `<link href>` / `<script src>`). */ urlHints?: UrlHints; } /** * Generator options for css modules. */ export interface CssGeneratorOptions { /** * Configure the generated JS modules that use the ES modules syntax. */ esModule?: CssGeneratorEsModule; /** * Avoid generating and loading a stylesheet and only embed exports from css into output javascript files. */ exportsOnly?: CssGeneratorExportsOnly; } /** * Generator options for css/module modules. */ export interface CssModuleGeneratorOptions { /** * Configure the generated JS modules that use the ES modules syntax. */ esModule?: CssGeneratorEsModule; /** * Configure how CSS content is exported as default. */ exportType?: CssParserExportType; /** * Specifies the convention of exported names. */ exportsConvention?: CssGeneratorExportsConvention; /** * Avoid generating and loading a stylesheet and only embed exports from css into output javascript files. */ exportsOnly?: CssGeneratorExportsOnly; /** * Digest types used for the hash. */ localIdentHashDigest?: HashDigest; /** * Number of chars which are used for the hash. */ localIdentHashDigestLength?: HashDigestLength; /** * Algorithm used for generation the hash (see node.js crypto package). */ localIdentHashFunction?: HashFunction; /** * Any string which is added to the hash to salt it. */ localIdentHashSalt?: HashSalt; /** * Configure the generated local ident name. */ localIdentName?: CssGeneratorLocalIdentName; } /** * Parser options for css/global modules. */ export interface CssModuleParserOptions { /** * Enable/disable renaming of `@keyframes`. */ animation?: CssParserAnimation; /** * Configure how the CSS source is parsed: as a full stylesheet (default) or as a block's contents (e.g. the content of an HTML `style` attribute). */ as?: CssParserAs; /** * Enable/disable renaming of `@container` names. */ container?: CssParserContainer; /** * Enable/disable renaming of custom identifiers. */ customIdents?: CssParserCustomIdents; /** * Enable/disable resolution of `@custom-media` at-rules (file-local build-time substitution). */ customMedia?: CssParserCustomMedia; /** * Enable/disable resolution of `@custom-selector` at-rules (file-local build-time expansion to `:is(...)`). */ customSelectors?: CssParserCustomSelectors; /** * Enable/disable renaming of dashed identifiers, e. g. custom properties. */ dashedIdents?: CssParserDashedIdents; /** * Configure how CSS content is exported as default. */ exportType?: CssParserExportType; /** * Auto-emit `<link rel="preload" as="font">` for the primary `src` URL of each `@font-face` reachable from an HTML entry's initial CSS. Only the first URL per `@font-face` is preloaded (preloading every format would double-download). Off by default; `parser.css.urlHints` rules and per-URL magic comments still override the seeded defaults. Set `output.crossOriginLoading` so the preload matches the font's CORS fetch. */ fontPreload?: CssParserFontPreload; /** * Enable/disable renaming of `@function` names. */ function?: CssParserFunction; /** * Enable/disable renaming of grid identifiers. */ grid?: CssParserGrid; /** * Enable/disable `@import` at-rules handling. */ import?: CssParserImport; /** * Use ES modules named export for css exports. */ namedExports?: CssParserNamedExports; /** * Enable/disable `url()`/`image-set()`/`src()`/`image()` functions handling. */ url?: CssParserUrl; /** * URL-referenced-asset default hint rules for this parser (JavaScript `new URL(...)`, CSS `url(...)`, HTML `<img src>` / `<link href>` / `<script src>`). */ urlHints?: UrlHints; } /** * Parser options for css modules. */ export interface CssParserOptions { /** * Configure how the CSS source is parsed: as a full stylesheet (default) or as a block's contents (e.g. the content of an HTML `style` attribute). */ as?: CssParserAs; /** * Enable/disable resolution of `@custom-media` at-rules (file-local build-time substitution). * @since 5.109.0 */ customMedia?: CssParserCustomMedia; /** * Enable/disable resolution of `@custom-selector` at-rules (file-local build-time expansion to `:is(...)`). * @since 5.109.0 */ customSelectors?: CssParserCustomSelectors; /** * Configure how CSS content is exported as default. */ exportType?: CssParserExportType; /** * Auto-emit `<link rel="preload" as="font">` for the primary `src` URL of each `@font-face` reachable from an HTML entry's initial CSS. Only the first URL per `@font-face` is preloaded (preloading every format would double-download). Off by default; `parser.css.urlHints` rules and per-URL magic comments still override the seeded defaults. Set `output.crossOriginLoading` so the preload matches the font's CORS fetch. * @since 5.109.0 */ fontPreload?: CssParserFontPreload; /** * Enable/disable `@import` at-rules handling. */ import?: CssParserImport; /** * Use ES modules named export for css exports. */ namedExports?: CssParserNamedExports; /** * Enable/disable `url()`/`image-set()`/`src()`/`image()` functions handling. */ url?: CssParserUrl; /** * URL-referenced-asset default hint rules for this parser (JavaScript `new URL(...)`, CSS `url(...)`, HTML `<img src>` / `<link href>` / `<script src>`). */ urlHints?: UrlHints; } /** * No generator options are supported for this module type. */ export interface EmptyGeneratorOptions {} /** * No parser options are supported for this module type. */ export interface EmptyParserOptions {} /** * An object with entry point description. */ export interface EntryDescriptionNormalized { /** * Enable/disable creating async chunks that are loaded on demand. */ asyncChunks?: boolean; /** * Base uri for this entry. */ baseUri?: string; /** * The method of loading chunks (methods included by default are 'jsonp' (web), 'import' (ESM), 'importScripts' (WebWorker), 'require' (sync node.js), 'async-node' (async node.js), but others might be added by plugins). */ chunkLoading?: ChunkLoading; /** * The entrypoints that the current entrypoint depend on. They must be loaded when this entrypoint is loaded. */ dependOn?: string[]; /** * Specifies the filename of output files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ filename?: Filename; /** * Generate an HTML file for this entrypoint with its JS and CSS output chunks injected. An object overrides `output.html` option by option for this entry; `inline` is resolved once per generated page and can only be set on `output.html`. */ html?: boolean | OutputHtmlOptions; /** * Module(s) that are loaded upon startup. The last one is exported. */ import?: string[]; /** * Specifies the layer in which modules of this entrypoint are placed. */ layer?: Layer; /** * Options for library. */ library?: LibraryOptions; /** * The 'publicPath' specifies the public URL address of the output files when referenced in a browser. */ publicPath?: PublicPath; /** * The name of the runtime chunk. If set a runtime chunk with this name is created or an existing entrypoint is used as runtime. */ runtime?: EntryRuntime; /** * The method of loading WebAssembly Modules (methods included by default are 'fetch' (web/WebWorker), 'async-node' (node.js), but others might be added by plugins). */ wasmLoading?: WasmLoading; /** * Mark this entry as a worker so its output file uses 'output.workerChunkFilename'. */ worker?: boolean; } /** * Multiple entry bundles are created. The key is the entry name. The value is an entry description object. */ export interface EntryStaticNormalized { /** * An object with entry point description. */ [k: string]: EntryDescriptionNormalized; } /** * Enables/Disables experiments (experimental features with relax SemVer compatibility). */ export interface ExperimentsNormalized { /** * Support WebAssembly as asynchronous EcmaScript Module. `"auto"` (the default) enables it unless a loader is registered for WebAssembly files. * @since 5.0.0 * @experimental */ asyncWebAssembly?: "auto" | boolean; /** * Enable backward-compat layer with deprecation warnings for many webpack 4 APIs. * @since 5.62.0 * @experimental */ backCompat?: boolean; /** * Build http(s): urls using a lockfile and resource content cache. * @since 5.49.0 * @experimental */ buildHttp?: HttpUriOptions; /** * Enable additional in memory caching of modules that are unchanged and reference only unchanged modules. * @since 5.54.0 * @experimental */ cacheUnaffected?: boolean; /** * Enable css support. `"auto"` (the default) enables the built-in CSS support unless a loader is registered for CSS files. * @since 5.66.0 * @experimental */ css?: "auto" | boolean; /** * Enable experimental tc39 proposal https://github.com/tc39/proposal-defer-import-eval. This allows to defer execution of a module until it's first use. * @since 5.100.0 * @experimental */ deferImport?: boolean; /** * Apply defaults of next major version. * @since 5.53.0 * @experimental */ futureDefaults?: boolean; /** * Enable HTML entry support. Treats `.html` files as a first-class module type so they can be used directly as entry points. `"auto"` (the default) enables it unless a loader is registered for HTML files. * @since 5.107.0 * @experimental */ html?: "auto" | boolean; /** * Compile entrypoints and import()s only when they are accessed. * @since 5.17.0 * @experimental */ lazyCompilation?: false | LazyCompilationOptions; /** * Allow output javascript files as module source type. * @since 5.0.0 * @experimental */ outputModule?: boolean; /** * Enable experimental tc39 proposal https://github.com/tc39/proposal-source-phase-imports. This allows importing modules at source phase. * @since 5.106.0 * @experimental */ sourceImport?: boolean; /** * Support WebAssembly as synchronous EcmaScript Module (outdated). * @since 5.0.0 * @experimental */ syncWebAssembly?: boolean; /** * Enable typescript support. `"auto"` (the default) enables the built-in TypeScript support when Node.js supports it (>= 22.6) and no loader is registered for TypeScript files. * @since 5.107.0 * @experimental */ typescript?: "auto" | boolean; } /** * Generator options for html modules. */ export interface HtmlGeneratorOptions { /** * Emit the parsed and URL-rewritten HTML as a standalone `.html` output file alongside the module's JavaScript export. `true` always emits the file; `false` never does; `"inline"` exposes the processed HTML for inline write-back (e.g. `<iframe srcdoc>`) without emitting a standalone file. When unset, extraction defaults to `true` for HTML modules used as compilation entries (HTML entry points) and `false` for HTML modules imported from JavaScript. Filenames follow `output.htmlFilename` / `output.htmlChunkFilename`. */ extract?: "inline" | boolean; } /** * Parser options for html modules. */ export interface HtmlParserOptions { /** * Configure how the HTML source is parsed: `"document"` (the default) parses a full page; any other value is the tag name of the context element to parse the source as that element's inner HTML (a fragment) — e.g. `"template"` for a neutral fragment, or `"tbody"` so context-sensitive tags like a bare `<tr>`/`<td>` are kept instead of dropped. * @since 5.109.0 */ as?: HtmlParserAs; /** * Configure extraction of URL-like attribute values (e.g. `<img src>`, `<link href>`, `<script src>`) as webpack dependencies. `true` (default) uses the built-in source list; `false` disables extraction entirely so attributes are left untouched and `<script src>` / `<link rel="modulepreload">` / `<link rel="stylesheet">` no longer become compilation entries; an array lets you customize which `tag`/`attribute` pairs are treated as URLs and how they are bundled. Use the string `"..."` inside the array to inline the defaults. Inline `<script>` and `<style>` bodies are always processed. Use `webpackIgnore` comments or `IgnorePlugin` to skip individual URLs. */ sources?: | ( | "..." | { /** * Attribute name whose value is treated as a URL. */ attribute: string; /** * Called with the element's decoded attribute map and the decoded attribute value; return false to skip this source entry for that element. */ filter?: ( attributes: Map<string, string>, value: string ) => boolean; /** * Tag name to match. Omit to match any tag. */ tag?: string; /** * How the attribute value should be parsed and bundled, or `false` to disable a built-in source for this `tag`/`attribute` (use together with `"..."` to drop a default, e.g. stop treating `<img src>` as a URL). `src` extracts a single URL as a plain asset; `srcset` parses a `srcset`-style list of candidate URLs as plain assets; `css-url` extracts `url(...)` references from a CSS value (like an SVG presentation attribute such as `fill`) as plain assets; `script` and `script-module` emit a classic / ES-module chunk entry like `<script src>` and `<script type="module" src>`; `stylesheet` emits a CSS chunk entry like `<link rel="stylesheet">`; `html` treats the URL as a link to another HTML file that is bundled as its own emitted page (its assets extracted) and rewrites the attribute to the page's output filename (like Parcel's `<a href="page.html">`); `stylesheet-style` treats the attribute value as a full stylesheet (like a `<style>` body) and `stylesheet-style-attribute` as a CSS block's contents (a declaration list, like a `style` attribute) — both bundle it through the CSS pipeline and replace the attribute's content with the processed CSS at render time; `srcdoc` treats the attribute value as an entity-encoded HTML document (like `<iframe srcdoc>`), bundling it through the HTML pipeline and replacing the attribute's content with the processed HTML at render time. */ type: | ( | "src" | "srcset" | "css-url" | "script" | "script-module" | "stylesheet" | "html" | "stylesheet-style" | "stylesheet-style-attribute" | "srcdoc" ) | false; } )[] | boolean; /** * Transform the raw source before the html parser extracts dependencies. Receives the source string and a context (`{ module, resource }`) and must return the html string to parse. Useful for compiling a templating language (Handlebars, EJS, Eta, …) to html so that URLs the template emits are still picked up as webpack dependencies. Runs synchronously. */ template?: import("../lib/html/HtmlParser").HtmlTemplateFunction; /** * URL-referenced-asset default hint rules for this parser (JavaScript `new URL(...)`, CSS `url(...)`, HTML `<img src>` / `<link href>` / `<script src>`). */ urlHints?: UrlHints; } /** * Parser options for javascript modules. */ export interface JavascriptParserOptions { /** * Set the value of `require.amd` and `define.amd`. Or disable AMD support. */ amd?: Amd; /** * Set .name to "default" for anonymous default export functions and classes per ES spec. Disable to reduce output size when .name is not needed. */ anonymousDefaultExportName?: boolean; /** * Enable/disable special handling for browserify bundles. */ browserify?: boolean; /** * Enable/disable parsing of CommonJs syntax. */ commonjs?: boolean; /** * Enable/disable parsing of magic comments in CommonJs syntax. */ commonjsMagicComments?: boolean; /** * Enable/disable parsing "import { createRequire } from "module"" and evaluating createRequire(). */ createRequire?: boolean | string; /** * Enable experimental tc39 proposal https://github.com/tc39/proposal-defer-import-eval. This allows to defer execution of a module until it's first use. * @since 5.100.0 */ deferImport?: boolean; /** * Auto-emit `<link rel="preload" as="style">` for the CSS of every dynamically imported (`import()`) chunk, so the stylesheet fetches in parallel with the chunk's JavaScript instead of after it parses. Unlike `dynamicImportPreload`, the JavaScript itself is not preloaded. `true` uses the default order; a number sets the preload order. * @since 5.109.0 */ dynamicImportCssPreload?: number | boolean; /** * Specifies global fetchPriority for dynamic import. */ dynamicImportFetchPriority?: "low" | "high" | "auto" | false; /** * Specifies global mode for dynamic import. */ dynamicImportMode?: "eager" | "weak" | "lazy" | "lazy-once"; /** * Specifies global prefetch for dynamic import. */ dynamicImportPrefetch?: number | boolean; /** * Specifies global preload for dynamic import. */ dynamicImportPreload?: number | boolean; /** * Enable/disable parsing of dynamic URL. */ dynamicUrl?: boolean; /** * Specifies the behavior of invalid export names in "import ... from ..." and "export ... from ...". */ exportsPresence?: "error" | "warn" | "auto" | false; /** * Enable warnings for full dynamic dependencies. */ exprContextCritical?: boolean; /** * Enable recursive directory lookup for full dynamic dependencies. */ exprContextRecursive?: boolean; /** * Sets the default regular expression for full dynamic dependencies. */ exprContextRegExp?: RegExp | boolean; /** * Set the default request for full dynamic dependencies. */ exprContextRequest?: string; /** * Enable/disable parsing of EcmaScript Modules syntax. */ harmony?: boolean; /** * Enable/disable parsing of import() syntax. */ import?: boolean; /** * Specifies the behavior of invalid export names in "import ... from ...". */ importExportsPresence?: "error" | "warn" | "auto" | false; /** * Enable/disable evaluating import.meta. Set to 'preserve-unknown' or an object to preserve unknown properties for runtime evaluation. */ importMeta?: boolean | "preserve-unknown" | ImportMetaParserOptions; /** * @deprecated * Deprecated in favor of "importMeta" object option with a "webpackContext" field. Enable/disable evaluating import.meta.webpackContext. */ importMetaContext?: boolean; /** * Include polyfills or mocks for various node stuff. */ node?: Node; /** * Override the module to strict or non-strict. This may affect the behavior of the module (some behaviors differ between strict and non-strict), so please configure this option carefully. */ overrideStrict?: "strict" | "non-strict"; /** * Function to parser source code. */ parse?: import("../lib/javascript/JavascriptParser").ParseFunction; /** * Mark the listed top-level function names for pure-function-based tree shaking. */ pureFunctions?: string[]; /** * Specifies the behavior of invalid export names in "export ... from ...". This might be useful to disable during the migration from "export ... from ..." to "export type ... from ..." when reexporting types in TypeScript. */ reexportExportsPresence?: "error" | "warn" | "auto" | false; /** * Enable/disable parsing of require.context syntax. */ requireContext?: boolean; /** * Enable/disable parsing of require.ensure syntax. */ requireEnsure?: boolean; /** * Enable/disable parsing of require.include syntax. */ requireInclude?: boolean; /** * Enable/disable parsing of require.js special syntax like require.config, requirejs.config, require.version and requirejs.onError. */ requireJs?: boolean; /** * Enable experimental tc39 proposal https://github.com/tc39/proposal-source-phase-imports. This allows importing modules at source phase. */ sourceImport?: boolean; /** * @deprecated * Deprecated in favor of "exportsPresence". Emit errors instead of warnings when imported names don't exist in imported module. */ strictExportPresence?: boolean; /** * Specifies the behavior of constructs that break at runtime in strict mode (e.g. 'with', 'arguments.callee', assigning to read-only globals) when modules are emitted as ES module output. * @since 5.109.0 */ strictModeViolations?: "error" | "warn" | false; /** * Handle the this context correctly according to the spec for namespace objects. */ strictThisContextOnImports?: boolean; /** * Enable/disable parsing of System.js special syntax like System.import, System.get, System.set and System.register. */ system?: boolean; /** * Enable typescript support. * @experimental */ typescript?: boolean; /** * Enable warnings when using the require function in a not statically analyse-able way. */ unknownContextCritical?: boolean; /** * Enable recursive directory lookup when using the require function in a not statically analyse-able way. */ unknownContextRecursive?: boolean; /** * Sets the regular expression when using the require function in a not statically analyse-able way. */ unknownContextRegExp?: RegExp | boolean; /** * Sets the request when using the require function in a not statically analyse-able way. */ unknownContextRequest?: string; /** * Enable/disable parsing of new URL() syntax. */ url?: "relative" | boolean; /** * URL-referenced-asset default hint rules for this parser (JavaScript `new URL(...)`, CSS `url(...)`, HTML `<img src>` / `<link href>` / `<script src>`). */ urlHints?: UrlHints; /** * Disable or configure parsing of WebWorker syntax like new Worker() or navigator.serviceWorker.register(). */ worker?: string[] | boolean; /** * Disable or configure parsing of Worklet syntax like context.audioWorklet.addModule() or CSS.paintWorklet.addModule(). * @since 5.109.0 */ worklet?: string[] | boolean; /** * Enable warnings for partial dynamic dependencies. */ wrappedContextCritical?: boolean; /** * Enable recursive directory lookup for partial dynamic dependencies. */ wrappedContextRecursive?: boolean; /** * Set the inner regular expression for partial dynamic dependencies. */ wrappedContextRegExp?: RegExp; } /** * Generator options for json modules. */ export interface JsonGeneratorOptions { /** * Use `JSON.parse` when the JSON string is longer than 20 characters. */ JSONParse?: boolean; } /** * Parser options for JSON modules. */ export interface JsonParserOptions { /** * The depth of json dependency flagged as `exportInfo`. */ exportsDepth?: number; /** * Allow named exports for json of object type. */ namedExports?: boolean; /** * Function to parser content and return JSON. */ parse?: import("../lib/json/JsonParser").ParseFn; } /** * Options affecting the normal modules (`NormalModuleFactory`). */ export interface ModuleOptionsNormalized { /** * An array of rules applied by default for modules. */ defaultRules: RuleSetRules; /** * Specify options for each generator. */ generator: GeneratorOptionsByModuleType; /** * Don't parse files matching. It's matched against the full resolved request. */ noParse?: NoParse; /** * Specify options for each parser. */ parser: ParserOptionsByModuleType; /** * An array of rules applied for modules. */ rules: RuleSetRules; /** * Cache the resolving of module requests. */ unsafeCache?: boolean | import("../lib/Compilation").UnsafeCachePredicate; } /** * Enables/Disables integrated optimizations. */ export interface OptimizationNormalized { /** * Avoid wrapping the entry module in an IIFE. */ avoidEntryIife?: boolean; /** * Check for incompatible wasm types when importing/exporting from/to ESM. */ checkWasmTypes?: boolean; /** * Define the algorithm to choose chunk ids (named: readable ids for better debugging, deterministic: numeric hash ids for better long term caching, size: numeric ids focused on minimal initial download size, total-size: numeric ids focused on minimal total download size, false: no algorithm used, as custom one can be provided via plugin). */ chunkIds?: "natural" | "named" | "deterministic" | "size" | "total-size" | false; /** * Concatenate modules when possible to generate less modules, more efficient code and enable more optimizations by the minimizer. An options object implies 'true'. */ concatenateModules?: boolean | ConcatenateModulesOptions; /** * Emit assets even when errors occur. Critical errors are emitted into the generated code and will cause errors at runtime. */ emitOnErrors?: boolean; /** * Also flag chunks as loaded which contain a subset of the modules. */ flagIncludedChunks?: boolean; /** * Inline ESM exports that bind to small primitive constants (≤6-byte null/undefined/boolean/number/string). Inlining makes the import dependency inactive so DCE can drop the export and possibly the module. */ inlineExports?: boolean; /** * Creates a module-internal dependency graph for top level symbols, exports and imports, to improve unused exports detection. */ innerGraph?: boolean; /** * Rename exports when possible to generate shorter code (depends on optimization.usedExports and optimization.providedExports, true/"deterministic": generate short deterministic names optimized for caching, "size": generate the shortest possible names). */ mangleExports?: ("size" | "deterministic") | boolean; /** * Reduce size of WASM by changing imports to shorter strings. */ mangleWasmImports?: boolean; /** * Merge chunks which contain the same modules. */ mergeDuplicateChunks?: boolean; /** * Enable minimizing the output. Uses optimization.minimizer. An object configures the built-in minimizer per asset type. */ minimize?: false | OptimizationMinimizeOptions; /** * Minimizer(s) to use for minimizing the output. */ minimizer?: ("..." | WebpackPluginInstance | WebpackPluginFunction)[]; /** * Define the algorithm to choose module ids (natural: numeric ids in order of usage, named: readable ids for better debugging, hashed: (deprecated) short hashes as ids for better long term caching, deterministic: numeric hash ids for better long term caching, size: numeric ids focused on minimal initial download size, false: no algorithm used, as custom one can be provided via plugin). */ moduleIds?: "natural" | "named" | "hashed" | "deterministic" | "size" | false; /** * @deprecated * Avoid emitting assets when errors occur (deprecated: use 'emitOnErrors' instead). */ noEmitOnErrors?: boolean; /** * Set process.env.NODE_ENV to a specific value. */ nodeEnv?: false | string; /** * Generate records with relative paths to be able to move the context folder. */ portableRecords?: boolean; /** * Figure out which exports are provided by modules to generate more efficient code. */ providedExports?: boolean; /** * Use real [contenthash] based on final content of the assets. */ realContentHash?: boolean; /** * Removes modules from chunks when these modules are already included in all parents. */ removeAvailableModules?: boolean; /** * Remove chunks which are empty. */ removeEmptyChunks?: boolean; /** * Create an additional chunk which contains only the webpack runtime and chunk hash maps. */ runtimeChunk?: OptimizationRuntimeChunkNormalized; /** * Skip over modules which contain no side effects when exports are not used (false: disabled, 'flag': only use manually placed side effects flag, true: also analyse source code for side effects). */ sideEffects?: "flag" | boolean; /** * Optimize duplication and caching by splitting chunks by shared modules and cache group. */ splitChunks?: false | OptimizationSplitChunksOptions; /** * Figure out which exports are used by modules to mangle export names, omit unused exports and generate more efficient code (true: analyse used exports for each runtime, "global": analyse exports globally for all runtimes combined). */ usedExports?: "global" | boolean; } /** * Normalized options affecting the output of the compilation. `output` options tell webpack how to write the compiled files to disk. */ export interface OutputNormalized { /** * The filename of asset modules as relative path inside the 'output.path' directory. */ assetModuleFilename?: AssetModuleFilename; /** * Enable/disable creating async chunks that are loaded on demand. */ asyncChunks?: boolean; /** * Add charset attribute for script tag. */ charset?: Charset; /** * Specifies the filename template of output files of non-initial chunks on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ chunkFilename?: ChunkFilename; /** * The format of chunks (formats included by default are 'array-push' (web/WebWorker), 'commonjs' (node.js), 'module' (ESM), but others might be added by plugins). */ chunkFormat?: ChunkFormat; /** * Number of milliseconds before chunk request expires. */ chunkLoadTimeout?: ChunkLoadTimeout; /** * The method of loading chunks (methods included by default are 'jsonp' (web), 'import' (ESM), 'importScripts' (WebWorker), 'require' (sync node.js), 'async-node' (async node.js), but others might be added by plugins). */ chunkLoading?: ChunkLoading; /** * The global variable used by webpack for loading of chunks. */ chunkLoadingGlobal?: ChunkLoadingGlobal; /** * Clean the output directory before emit. */ clean?: Clean; /** * Check if to be emitted file already exists and have the same content before writing to output filesystem. */ compareBeforeEmit?: CompareBeforeEmit; /** * This option enables cross-origin loading of chunks. */ crossOriginLoading?: CrossOriginLoading; /** * Specifies the filename template of non-initial output css files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ cssChunkFilename?: CssChunkFilename; /** * Specifies the filename template of output css files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ cssFilename?: CssFilename; /** * Similar to `output.devtoolModuleFilenameTemplate`, but used in the case of duplicate module identifiers. */ devtoolFallbackModuleFilenameTemplate?: DevtoolFallbackModuleFilenameTemplate; /** * Filename template string of function for the sources array in a generated SourceMap. */ devtoolModuleFilenameTemplate?: DevtoolModuleFilenameTemplate; /** * Module namespace to use when interpolating filename template string for the sources array in a generated SourceMap. Defaults to `output.library` if not set. It's useful for avoiding runtime collisions in sourcemaps from multiple webpack projects built as libraries. */ devtoolNamespace?: DevtoolNamespace; /** * List of chunk loading types enabled for use by entry points. */ enabledChunkLoadingTypes: EnabledChunkLoadingTypes; /** * List of library types enabled for use by entry points. */ enabledLibraryTypes: EnabledLibraryTypes; /** * List of wasm loading types enabled for use by entry points. */ enabledWasmLoadingTypes: EnabledWasmLoadingTypes; /** * The abilities of the environment where the webpack generated code should run. */ environment: Environment; /** * Specifies the filename of output files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ filename?: Filename; /** * An expression which is used to address the global object/scope in runtime code. */ globalObject?: GlobalObject; /** * Digest types used for the hash. */ hashDigest?: HashDigest; /** * Number of chars which are used for the hash. */ hashDigestLength?: HashDigestLength; /** * Algorithm used for generation the hash (see node.js crypto package). */ hashFunction?: HashFunction; /** * Any string which is added to the hash to salt it. */ hashSalt?: HashSalt; /** * The filename of the Hot Update Chunks. They are inside the output.path directory. */ hotUpdateChunkFilename?: HotUpdateChunkFilename; /** * The global variable used by webpack for loading of hot update chunks. */ hotUpdateGlobal?: HotUpdateGlobal; /** * The filename of the Hot Update Main File. It is inside the 'output.path' directory. */ hotUpdateMainFilename?: HotUpdateMainFilename; /** * Generate an HTML file for each non-HTML entrypoint with its JS and CSS output chunks injected. Can be overridden per entry via the entry descriptor `html` option. */ html?: OutputHtml; /** * Specifies the filename template of non-initial output html files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ htmlChunkFilename?: HtmlChunkFilename; /** * Specifies the filename template of output html files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ htmlFilename?: HtmlFilename; /** * Ignore warnings in the browser. */ ignoreBrowserWarnings?: boolean; /** * Wrap javascript code into IIFE's to avoid leaking into global scope. */ iife?: Iife; /** * The name of the native import() function (can be exchanged for a polyfill). */ importFunctionName?: ImportFunctionName; /** * The name of the native import.meta object (can be exchanged for a polyfill). */ importMetaName?: ImportMetaName; /** * Options for library. */ library?: LibraryOptions; /** * Output javascript files as module source type. */ module?: OutputModule; /** * The output directory as **absolute path** (required). */ path?: Path; /** * Include comments with information about the modules. */ pathinfo?: Pathinfo; /** * The 'publicPath' specifies the public URL address of the output files when referenced in a browser. */ publicPath?: PublicPath; /** * Full resource-hint configuration. */ resourceHints?: ResourceHintsOptions; /** * This option enables loading async chunks via a custom script type, such as script type="module". */ scriptType?: ScriptType; /** * The filename of the SourceMaps for the JavaScript files. They are inside the 'output.path' directory. */ sourceMapFilename?: SourceMapFilename; /** * Prefixes every line of the source in the bundle with this string. */ sourcePrefix?: SourcePrefix; /** * Handles error in module loading correctly at a performance cost. This will handle module error compatible with the EcmaScript Modules spec. */ strictModuleErrorHandling?: StrictModuleErrorHandling; /** * @deprecated * Handles exceptions in module loading correctly at a performance cost (Deprecated). This will handle module error compatible with the Node.js CommonJS way. */ strictModuleExceptionHandling?: StrictModuleExceptionHandling; /** * Emit a runtime check that throws a 'MODULE_NOT_FOUND' error when a required module id is missing from the bundle. */ strictModuleResolution?: StrictModuleResolution; /** * Use a Trusted Types policy to create urls for chunks. */ trustedTypes?: TrustedTypes; /** * A unique name of the webpack build to avoid multiple webpack runtimes to conflict when using globals. */ uniqueName?: UniqueName; /** * The method of loading WebAssembly Modules (methods included by default are 'fetch' (web/WebWorker), 'async-node' (node.js), but others might be added by plugins). */ wasmLoading?: WasmLoading; /** * Fall back to non-streaming WebAssembly instantiation when streaming compilation fails because the server does not serve `.wasm` files with the `application/wasm` MIME type. */ wasmStreamingFallback?: WasmStreamingFallback; /** * The filename of WebAssembly modules as relative path inside the 'output.path' directory. */ webassemblyModuleFilename?: WebassemblyModuleFilename; /** * Specifies the filename template of non-initial output worker's files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk. */ workerChunkFilename?: WorkerChunkFilename; /** * The method of loading chunks (methods included by default are 'jsonp' (web), 'import' (ESM), 'importScripts' (WebWorker), 'require' (sync node.js), 'async-node' (async node.js), but others might be added by plugins). */ workerChunkLoading?: ChunkLoading; /** * Worker public path. Much like the public path, this sets the location where the worker script file is intended to be found. If not set, webpack will use the publicPath. Don't set this option unless your worker scripts are located at a different path from your other script files. */ workerPublicPath?: WorkerPublicPath; /** * The method of loading WebAssembly Modules (methods included by default are 'fetch' (web/WebWorker), 'async-node' (node.js), but others might be added by plugins). */ workerWasmLoading?: WasmLoading; } /** * Normalized webpack options object. */ export interface WebpackOptionsNormalized { /** * Set the value of `require.amd` and `define.amd`. Or disable AMD support. */ amd?: Amd; /** * Report the first error as a hard error instead of tolerating it. */ bail?: Bail; /** * Cache generated modules and chunks to improve performance for multiple incremental builds. */ cache: CacheOptionsNormalized; /** * The base directory (absolute path!) for resolving the `entry` option. If `output.pathinfo` is set, the included pathinfo is shortened to this directory. */ context?: Context; /** * References to other configurations to depend on. */ dependencies?: Dependencies; /** * Options for the webpack-dev-server. */ devServer?: DevServer; /** * A developer tool to enhance debugging (false | eval | [inline-|hidden-|eval-][nosources-][cheap-[module-]]source-map). */ devtool?: DevTool; /** * Enable and configure the Dotenv plugin to load environment variables from .env files. */ dotenv?: Dotenv; /** * The entry point(s) of the compilation. */ entry: EntryNormalized; /** * Enables/Disables experiments (experimental features with relax SemVer compatibility). */ experiments: ExperimentsNormalized; /** * Specify dependencies that shouldn't be resolved by webpack, but should become dependencies of the resulting bundle. The kind of the dependency depends on `output.libraryTarget`. */ externals: Externals; /** * Enable presets of externals for specific targets. */ externalsPresets: ExternalsPresets; /** * Specifies the default type of externals ('amd*', 'umd*', 'system' and 'jsonp' depend on output.libraryTarget set to the same value). */ externalsType?: ExternalsType; /** * Ignore specific warnings. */ ignoreWarnings?: IgnoreWarningsNormalized; /** * Options for infrastructure level logging. */ infrastructureLogging: InfrastructureLogging; /** * Custom values available in the loader context. */ loader?: Loader; /** * Enable production optimizations or development hints. */ mode?: Mode; /** * Options affecting the normal modules (`NormalModuleFactory`). */ module: ModuleOptionsNormalized; /** * Name of the configuration. Used when loading multiple configurations. */ name?: Name; /** * Include polyfills or mocks for various node stuff. */ node: Node; /** * Enables/Disables integrated optimizations. */ optimization: OptimizationNormalized; /** * Normalized options affecting the output of the compilation. `output` options tell webpack how to write the compiled files to disk. */ output: OutputNormalized; /** * The number of parallel processed modules in the compilation. */ parallelism?: Parallelism; /** * Configuration for web performance recommendations. */ performance?: Performance; /** * Add additional plugins to the compiler. */ plugins: PluginsNormalized; /** * Capture timing information for each module. */ profile?: Profile; /** * Store compiler state to a json file. */ recordsInputPath?: RecordsInputPath; /** * Load compiler state from a json file. */ recordsOutputPath?: RecordsOutputPath; /** * Options for the resolver. */ resolve: Resolve; /** * Options for the resolver when resolving loaders. */ resolveLoader: ResolveLoader; /** * Options affecting how file system snapshots are created and validated. */ snapshot: SnapshotOptions; /** * Stats options object or preset name. */ stats: StatsValue; /** * Environment to build for. An array of environments to build for all of them when possible. */ target?: Target; /** * Enable validation of webpack configuration. Defaults to true in development mode. In production mode, defaults to true unless futureDefaults is enabled, then defaults to false. */ validate?: Validate; /** * Enter watch mode, which rebuilds on file change. */ watch?: Watch; /** * Options for the watcher. */ watchOptions: WatchOptions; } /** * If an dependency matches exactly a property of the object, the property value is used as dependency. */ export interface ExternalItemObjectKnown { /** * Specify externals depending on the layer. */ byLayer?: | { [k: string]: ExternalItem; } | import("../lib/ExternalModuleFactoryPlugin").ExternalItemByLayerFn; } /** * If an dependency matches exactly a property of the object, the property value is used as dependency. */ export interface ExternalItemObjectUnknown { [k: string]: ExternalItemValue; } /** * The target of the external with a type, optionally with an 'interop' hint describing how its exports interoperate with ES module imports. */ export interface ExternalItemValueObjectKnown { /** * How an external's exports interoperate with ES module imports, independent of the importing module's strictness (similar to Rollup's `output.interop`). 'default': treat as CommonJS, the default import is the whole exports (Node.js semantics). 'esModule': treat as an ES module namespace, the default import is unboxed to `.default`. * @since 5.109.0 */ interop?: ExternalItemInterop; } /** * The target of the external with a type, optionally with an 'interop' hint describing how its exports interoperate with ES module imports. */ export interface ExternalItemValueObjectUnknown { /** * The target of the external for a specific external type. */ [k: string]: string[] | string; } /** * Specify options for each generator. */ export interface GeneratorOptionsByModuleTypeKnown { /** * Generator options for asset modules. */ asset?: AssetGeneratorOptions; /** * No generator options are supported for this module type. */ "asset/bytes"?: EmptyGeneratorOptions; /** * Generator options for asset/inline modules. */ "asset/inline"?: AssetInlineGeneratorOptions; /** * Generator options for asset/resource modules. */ "asset/resource"?: AssetResourceGeneratorOptions; /** * No generator options are supported for this module type. */ "asset/source"?: EmptyGeneratorOptions; /** * Generator options for css modules. */ css?: CssGeneratorOptions; /** * Generator options for css/module modules. */ "css/auto"?: CssModuleGeneratorOptions; /** * Generator options for css/module modules. */ "css/global"?: CssModuleGeneratorOptions; /** * Generator options for css/module modules. */ "css/module"?: CssModuleGeneratorOptions; /** * Generator options for html modules. */ html?: HtmlGeneratorOptions; /** * No generator options are supported for this module type. */ javascript?: EmptyGeneratorOptions; /** * No generator options are supported for this module type. */ "javascript/auto"?: EmptyGeneratorOptions; /** * No generator options are supported for this module type. */ "javascript/dynamic"?: EmptyGeneratorOptions; /** * No generator options are supported for this module type. */ "javascript/esm"?: EmptyGeneratorOptions; /** * Generator options for json modules. */ json?: JsonGeneratorOptions; } /** * Specify options for each generator. */ export interface GeneratorOptionsByModuleTypeUnknown { /** * Options for generating. */ [k: string]: { [k: string]: any; }; } /** * Enable/disable evaluating import.meta fields. Omitted fields are enabled and unknown fields are preserved. Custom fields are allowed. * @since 5.109.0 */ export interface ImportMetaParserOptionsKnown { /** * Enable/disable evaluating import.meta.dirname. */ dirname?: boolean; /** * Enable/disable evaluating import.meta.env. */ env?: boolean; /** * Enable/disable evaluating import.meta.filename. */ filename?: boolean; /** * Enable/disable evaluating import.meta.main. */ main?: boolean; /** * Enable/disable evaluating import.meta.resolve. */ resolve?: boolean; /** * Enable/disable evaluating import.meta.url. */ url?: boolean; /** * Enable/disable evaluating import.meta.webpack. */ webpack?: boolean; /** * Enable/disable evaluating import.meta.webpackContext. */ webpackContext?: boolean; /** * Enable/disable evaluating import.meta.webpackHot. */ webpackHot?: boolean; } /** * Enable/disable evaluating import.meta fields. Omitted fields are enabled and unknown fields are preserved. Custom fields are allowed. * @since 5.109.0 */ export interface ImportMetaParserOptionsUnknown { /** * Enable/disable evaluating a custom import.meta field. */ [k: string]: boolean; } /** * Specify options for each parser. */ export interface ParserOptionsByModuleTypeKnown { /** * Parser options for asset modules. */ asset?: AssetParserOptions; /** * No parser options are supported for this module type. */ "asset/bytes"?: EmptyParserOptions; /** * No parser options are supported for this module type. */ "asset/inline"?: EmptyParserOptions; /** * No parser options are supported for this module type. */ "asset/resource"?: EmptyParserOptions; /** * No parser options are supported for this module type. */ "asset/source"?: EmptyParserOptions; /** * Parser options for css modules. */ css?: CssParserOptions; /** * Parser options for css/auto and css/module modules. */ "css/auto"?: CssAutoOrModuleParserOptions; /** * Parser options for css/global modules. */ "css/global"?: CssModuleParserOptions; /** * Parser options for css/auto and css/module modules. */ "css/module"?: CssAutoOrModuleParserOptions; /** * Parser options for html modules. */ html?: HtmlParserOptions; /** * Parser options for javascript modules. */ javascript?: JavascriptParserOptions; /** * Parser options for javascript modules. */ "javascript/auto"?: JavascriptParserOptions; /** * Parser options for javascript modules. */ "javascript/dynamic"?: JavascriptParserOptions; /** * Parser options for javascript modules. */ "javascript/esm"?: JavascriptParserOptions; /** * Parser options for JSON modules. */ json?: JsonParserOptions; } /** * Specify options for each parser. */ export interface ParserOptionsByModuleTypeUnknown { /** * Options for parsing. */ [k: string]: { [k: string]: any; }; }