aboutsummaryrefslogtreecommitdiff
path: root/node_modules/webpack/declarations
diff options
context:
space:
mode:
authorruki <waruqi@gmail.com>2018-11-08 00:38:48 +0800
committerruki <waruqi@gmail.com>2018-11-07 21:53:09 +0800
commit26105034da4fcce7ac883c899d781f016559310d (patch)
treec459a5dc4e3aa0972d9919033ece511ce76dd129 /node_modules/webpack/declarations
parent2c77f00f1a7ecb6c8192f9c16d3b2001b254a107 (diff)
downloadxmake-docs-26105034da4fcce7ac883c899d781f016559310d.tar.gz
xmake-docs-26105034da4fcce7ac883c899d781f016559310d.zip
switch to vuepress
Diffstat (limited to 'node_modules/webpack/declarations')
-rw-r--r--node_modules/webpack/declarations/WebpackOptions.d.ts1388
-rw-r--r--node_modules/webpack/declarations/plugins/BannerPlugin.d.ts51
-rw-r--r--node_modules/webpack/declarations/plugins/DllPlugin.d.ts32
-rw-r--r--node_modules/webpack/declarations/plugins/DllReferencePlugin.d.ts126
-rw-r--r--node_modules/webpack/declarations/plugins/HashedModuleIdsPlugin.d.ts24
-rw-r--r--node_modules/webpack/declarations/plugins/IgnorePlugin.d.ts27
-rw-r--r--node_modules/webpack/declarations/plugins/LoaderOptionsPlugin.d.ts27
-rw-r--r--node_modules/webpack/declarations/plugins/ProgressPlugin.d.ts42
-rw-r--r--node_modules/webpack/declarations/plugins/SourceMapDevToolPlugin.d.ts94
-rw-r--r--node_modules/webpack/declarations/plugins/WatchIgnorePlugin.d.ts10
-rw-r--r--node_modules/webpack/declarations/plugins/debug/ProfilingPlugin.d.ts12
-rw-r--r--node_modules/webpack/declarations/plugins/optimize/AggressiveSplittingPlugin.d.ts24
-rw-r--r--node_modules/webpack/declarations/plugins/optimize/LimitChunkCountPlugin.d.ts16
-rw-r--r--node_modules/webpack/declarations/plugins/optimize/MinChunkSizePlugin.d.ts12
-rw-r--r--node_modules/webpack/declarations/plugins/optimize/OccurrenceOrderChunkIdsPlugin.d.ts12
-rw-r--r--node_modules/webpack/declarations/plugins/optimize/OccurrenceOrderModuleIdsPlugin.d.ts12
16 files changed, 1909 insertions, 0 deletions
diff --git a/node_modules/webpack/declarations/WebpackOptions.d.ts b/node_modules/webpack/declarations/WebpackOptions.d.ts
new file mode 100644
index 00000000..62e17fcc
--- /dev/null
+++ b/node_modules/webpack/declarations/WebpackOptions.d.ts
@@ -0,0 +1,1388 @@
+/**
+ * This file was automatically generated.
+ * DO NOT MODIFY BY HAND.
+ * Run `yarn special-lint-fix` to update
+ */
+
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "Entry".
+ */
+export type Entry = EntryDynamic | EntryStatic;
+/**
+ * A Function returning an entry object, an entry string, an entry array or a promise to these things.
+ *
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "EntryDynamic".
+ */
+export type EntryDynamic = (() => EntryStatic | Promise<EntryStatic>);
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "EntryStatic".
+ */
+export type EntryStatic = EntryObject | EntryItem;
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "NonEmptyArrayOfUniqueStringValues".
+ */
+export type NonEmptyArrayOfUniqueStringValues = string[];
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "EntryItem".
+ */
+export type EntryItem = string | NonEmptyArrayOfUniqueStringValues;
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "Externals".
+ */
+export type Externals =
+ | ((
+ context: string,
+ request: string,
+ callback: (err?: Error, result?: string) => void
+ ) => void)
+ | ExternalItem
+ | (
+ | ((
+ context: string,
+ request: string,
+ callback: (err?: Error, result?: string) => void
+ ) => void)
+ | ExternalItem)[];
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "ExternalItem".
+ */
+export type ExternalItem =
+ | string
+ | {
+ /**
+ * The dependency used for the external
+ */
+ [k: string]:
+ | string
+ | {
+ [k: string]: any;
+ }
+ | ArrayOfStringValues
+ | boolean;
+ }
+ | RegExp;
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "ArrayOfStringValues".
+ */
+export type ArrayOfStringValues = string[];
+/**
+ * One or multiple rule conditions
+ *
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "RuleSetConditionOrConditions".
+ */
+export type RuleSetConditionOrConditions = RuleSetCondition | RuleSetConditions;
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "RuleSetCondition".
+ */
+export type RuleSetCondition =
+ | RegExp
+ | string
+ | ((value: string) => boolean)
+ | RuleSetConditions
+ | {
+ /**
+ * Logical AND
+ */
+ and?: RuleSetConditions;
+ /**
+ * Exclude all modules matching any of these conditions
+ */
+ exclude?: RuleSetConditionOrConditions;
+ /**
+ * Exclude all modules matching not any of these conditions
+ */
+ include?: RuleSetConditionOrConditions;
+ /**
+ * Logical NOT
+ */
+ not?: RuleSetConditions;
+ /**
+ * Logical OR
+ */
+ or?: RuleSetConditions;
+ /**
+ * Exclude all modules matching any of these conditions
+ */
+ test?: RuleSetConditionOrConditions;
+ };
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "RuleSetConditions".
+ */
+export type RuleSetConditions = RuleSetConditionsRecursive;
+/**
+ * One or multiple rule conditions
+ *
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "RuleSetConditionOrConditionsAbsolute".
+ */
+export type RuleSetConditionOrConditionsAbsolute =
+ | RuleSetConditionAbsolute
+ | RuleSetConditionsAbsolute;
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "RuleSetConditionAbsolute".
+ */
+export type RuleSetConditionAbsolute =
+ | RegExp
+ | string
+ | ((value: string) => boolean)
+ | RuleSetConditionsAbsolute
+ | {
+ /**
+ * Logical AND
+ */
+ and?: RuleSetConditionsAbsolute;
+ /**
+ * Exclude all modules matching any of these conditions
+ */
+ exclude?: RuleSetConditionOrConditionsAbsolute;
+ /**
+ * Exclude all modules matching not any of these conditions
+ */
+ include?: RuleSetConditionOrConditionsAbsolute;
+ /**
+ * Logical NOT
+ */
+ not?: RuleSetConditionsAbsolute;
+ /**
+ * Logical OR
+ */
+ or?: RuleSetConditionsAbsolute;
+ /**
+ * Exclude all modules matching any of these conditions
+ */
+ test?: RuleSetConditionOrConditionsAbsolute;
+ };
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "RuleSetConditionsAbsolute".
+ */
+export type RuleSetConditionsAbsolute = RuleSetConditionsAbsoluteRecursive;
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "RuleSetLoader".
+ */
+export type RuleSetLoader = string;
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "RuleSetUse".
+ */
+export type RuleSetUse = RuleSetUseItem | Function | RuleSetUseItem[];
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "RuleSetUseItem".
+ */
+export type RuleSetUseItem =
+ | RuleSetLoader
+ | Function
+ | {
+ /**
+ * Unique loader identifier
+ */
+ ident?: string;
+ /**
+ * Loader name
+ */
+ loader?: RuleSetLoader;
+ /**
+ * Loader options
+ */
+ options?: RuleSetQuery;
+ /**
+ * Loader query
+ */
+ query?: RuleSetQuery;
+ };
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "RuleSetQuery".
+ */
+export type RuleSetQuery =
+ | {
+ [k: string]: any;
+ }
+ | string;
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "ArrayOfStringOrStringArrayValues".
+ */
+export type ArrayOfStringOrStringArrayValues = (string | string[])[];
+/**
+ * Function acting as plugin
+ *
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "WebpackPluginFunction".
+ */
+export type WebpackPluginFunction = (
+ compiler: import("../lib/Compiler")
+) => void;
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "RuleSetRules".
+ */
+export type RuleSetRules = RuleSetRule[];
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "FilterTypes".
+ */
+export type FilterTypes = FilterItemTypes | FilterItemTypes[];
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "FilterItemTypes".
+ */
+export type FilterItemTypes = RegExp | string | Function;
+
+export interface WebpackOptions {
+ /**
+ * Set the value of `require.amd` and `define.amd`.
+ */
+ amd?: {
+ [k: string]: any;
+ };
+ /**
+ * Report the first error as a hard error instead of tolerating it.
+ */
+ bail?: boolean;
+ /**
+ * Cache generated modules and chunks to improve performance for multiple incremental builds.
+ */
+ cache?:
+ | boolean
+ | {
+ [k: string]: any;
+ };
+ /**
+ * The base directory (absolute path!) for resolving the `entry` option. If `output.pathinfo` is set, the included pathinfo is shortened to this directory.
+ */
+ context?: string;
+ /**
+ * References to other configurations to depend on.
+ */
+ dependencies?: string[];
+ /**
+ * Options for the webpack-dev-server
+ */
+ devServer?: {
+ [k: string]: any;
+ };
+ /**
+ * A developer tool to enhance debugging.
+ */
+ devtool?: string | false;
+ /**
+ * The entry point(s) of the compilation.
+ */
+ entry?: Entry;
+ /**
+ * 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;
+ /**
+ * Custom values available in the loader context.
+ */
+ loader?: {
+ [k: string]: any;
+ };
+ /**
+ * Enable production optimizations or development hints.
+ */
+ mode?: "development" | "production" | "none";
+ /**
+ * Options affecting the normal modules (`NormalModuleFactory`).
+ */
+ module?: ModuleOptions;
+ /**
+ * Name of the configuration. Used when loading multiple configurations.
+ */
+ name?: string;
+ /**
+ * Include polyfills or mocks for various node stuff.
+ */
+ node?: false | NodeOptions;
+ /**
+ * Enables/Disables integrated optimizations
+ */
+ optimization?: OptimizationOptions;
+ /**
+ * Options affecting the output of the compilation. `output` options tell webpack how to write the compiled files to disk.
+ */
+ output?: OutputOptions;
+ /**
+ * The number of parallel processed modules in the compilation.
+ */
+ parallelism?: number;
+ /**
+ * Configuration for web performance recommendations.
+ */
+ performance?: false | PerformanceOptions;
+ /**
+ * Add additional plugins to the compiler.
+ */
+ plugins?: (WebpackPluginInstance | WebpackPluginFunction)[];
+ /**
+ * Capture timing information for each module.
+ */
+ profile?: boolean;
+ /**
+ * Store compiler state to a json file.
+ */
+ recordsInputPath?: string;
+ /**
+ * Load compiler state from a json file.
+ */
+ recordsOutputPath?: 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.
+ */
+ recordsPath?: string;
+ /**
+ * Options for the resolver
+ */
+ resolve?: ResolveOptions;
+ /**
+ * Options for the resolver when resolving loaders
+ */
+ resolveLoader?: ResolveOptions;
+ /**
+ * Options for webpack-serve
+ */
+ serve?: {
+ [k: string]: any;
+ };
+ /**
+ * Used by the webpack CLI program to pass stats options.
+ */
+ stats?:
+ | StatsOptions
+ | boolean
+ | ("none" | "errors-only" | "minimal" | "normal" | "detailed" | "verbose");
+ /**
+ * Environment to build for
+ */
+ target?:
+ | (
+ | "web"
+ | "webworker"
+ | "node"
+ | "async-node"
+ | "node-webkit"
+ | "electron-main"
+ | "electron-renderer")
+ | ((compiler: import("../lib/Compiler")) => void);
+ /**
+ * Enter watch mode, which rebuilds on file change.
+ */
+ watch?: boolean;
+ /**
+ * Options for the watcher
+ */
+ watchOptions?: {
+ /**
+ * Delay the rebuilt after the first change. Value is a time in ms.
+ */
+ aggregateTimeout?: number;
+ /**
+ * Ignore some files from watching
+ */
+ ignored?: {
+ [k: string]: any;
+ };
+ /**
+ * Enable polling mode for watching
+ */
+ poll?: boolean | number;
+ /**
+ * Stop watching when stdin stream has ended
+ */
+ stdin?: boolean;
+ };
+}
+/**
+ * Multiple entry bundles are created. The key is the chunk name. The value can be a string or an array.
+ *
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "EntryObject".
+ */
+export interface EntryObject {
+ /**
+ * An entry point with name
+ */
+ [k: string]: string | NonEmptyArrayOfUniqueStringValues;
+}
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "ModuleOptions".
+ */
+export interface ModuleOptions {
+ /**
+ * An array of rules applied by default for modules.
+ */
+ defaultRules?: RuleSetRules;
+ /**
+ * 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?: boolean | RegExp;
+ /**
+ * Set the default request for full dynamic dependencies
+ */
+ exprContextRequest?: string;
+ /**
+ * Don't parse files matching. It's matched against the full resolved request.
+ */
+ noParse?: RegExp[] | RegExp | Function | string[] | string;
+ /**
+ * An array of rules applied for modules.
+ */
+ rules?: RuleSetRules;
+ /**
+ * Emit errors instead of warnings when imported names don't exist in imported module
+ */
+ strictExportPresence?: boolean;
+ /**
+ * Handle the this context correctly according to the spec for namespace objects
+ */
+ strictThisContextOnImports?: 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?: boolean | RegExp;
+ /**
+ * Sets the request when using the require function in a not statically analyse-able way
+ */
+ unknownContextRequest?: string;
+ /**
+ * Cache the resolving of module requests
+ */
+ unsafeCache?: boolean | Function;
+ /**
+ * 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;
+}
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "RuleSetRule".
+ */
+export interface RuleSetRule {
+ /**
+ * Match the child compiler name
+ */
+ compiler?: RuleSetConditionOrConditions;
+ /**
+ * Enforce this rule as pre or post step
+ */
+ enforce?: "pre" | "post";
+ /**
+ * Shortcut for resource.exclude
+ */
+ exclude?: RuleSetConditionOrConditionsAbsolute;
+ /**
+ * Shortcut for resource.include
+ */
+ include?: RuleSetConditionOrConditionsAbsolute;
+ /**
+ * Match the issuer of the module (The module pointing to this module)
+ */
+ issuer?: RuleSetConditionOrConditionsAbsolute;
+ /**
+ * Shortcut for use.loader
+ */
+ loader?: RuleSetLoader | RuleSetUse;
+ /**
+ * Shortcut for use.loader
+ */
+ loaders?: RuleSetUse;
+ /**
+ * Only execute the first matching rule in this array
+ */
+ oneOf?: RuleSetRules;
+ /**
+ * Shortcut for use.options
+ */
+ options?: RuleSetQuery;
+ /**
+ * Options for parsing
+ */
+ parser?: {
+ [k: string]: any;
+ };
+ /**
+ * Shortcut for use.query
+ */
+ query?: RuleSetQuery;
+ /**
+ * Options for the resolver
+ */
+ resolve?: ResolveOptions;
+ /**
+ * Match the resource path of the module
+ */
+ resource?: RuleSetConditionOrConditionsAbsolute;
+ /**
+ * Match the resource query of the module
+ */
+ resourceQuery?: RuleSetConditionOrConditions;
+ /**
+ * Match and execute these rules when this rule is matched
+ */
+ rules?: RuleSetRules;
+ /**
+ * 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?:
+ | "javascript/auto"
+ | "javascript/dynamic"
+ | "javascript/esm"
+ | "json"
+ | "webassembly/experimental";
+ /**
+ * Modifiers applied to the module when rule is matched
+ */
+ use?: RuleSetUse;
+}
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "ResolveOptions".
+ */
+export interface ResolveOptions {
+ /**
+ * Redirect module requests
+ */
+ alias?:
+ | {
+ /**
+ * New request
+ */
+ [k: string]: string;
+ }
+ | {
+ /**
+ * New request
+ */
+ alias?: string;
+ /**
+ * Request to be redirected
+ */
+ name?: string;
+ /**
+ * Redirect only exact matching request
+ */
+ onlyModule?: boolean;
+ }[];
+ /**
+ * Fields in the description file (package.json) which are used to redirect requests inside the module
+ */
+ aliasFields?: ArrayOfStringOrStringArrayValues;
+ /**
+ * Predicate function to decide which requests should be cached
+ */
+ cachePredicate?: Function;
+ /**
+ * Include the context information in the cache identifier when caching
+ */
+ cacheWithContext?: boolean;
+ /**
+ * Enable concord resolving extras
+ */
+ concord?: boolean;
+ /**
+ * Filenames used to find a description file
+ */
+ descriptionFiles?: ArrayOfStringValues;
+ /**
+ * Enforce using one of the extensions from the extensions option
+ */
+ enforceExtension?: boolean;
+ /**
+ * Enforce using one of the module extensions from the moduleExtensions option
+ */
+ enforceModuleExtension?: boolean;
+ /**
+ * Extensions added to the request when trying to find the file
+ */
+ extensions?: ArrayOfStringValues;
+ /**
+ * Filesystem for the resolver
+ */
+ fileSystem?: {
+ [k: string]: any;
+ };
+ /**
+ * Field names from the description file (package.json) which are used to find the default entry point
+ */
+ mainFields?: ArrayOfStringOrStringArrayValues;
+ /**
+ * Filenames used to find the default entry point if there is no description file or main field
+ */
+ mainFiles?: ArrayOfStringValues;
+ /**
+ * Extensions added to the module request when trying to find the module
+ */
+ moduleExtensions?: ArrayOfStringValues;
+ /**
+ * Folder names or directory paths where to find modules
+ */
+ modules?: ArrayOfStringValues;
+ /**
+ * Plugins for the resolver
+ */
+ plugins?: (WebpackPluginInstance | WebpackPluginFunction)[];
+ /**
+ * Custom resolver
+ */
+ resolver?: {
+ [k: string]: any;
+ };
+ /**
+ * Enable resolving symlinks to the original location
+ */
+ symlinks?: boolean;
+ /**
+ * Enable caching of successfully resolved requests
+ */
+ unsafeCache?:
+ | boolean
+ | {
+ [k: string]: any;
+ };
+ /**
+ * Use synchronous filesystem calls for the resolver
+ */
+ useSyncFileSystemCalls?: boolean;
+}
+/**
+ * Plugin instance
+ *
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "WebpackPluginInstance".
+ */
+export interface WebpackPluginInstance {
+ /**
+ * The run point of the plugin, required method.
+ */
+ apply: (compiler: import("../lib/Compiler")) => void;
+ [k: string]: any;
+}
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "NodeOptions".
+ */
+export interface NodeOptions {
+ /**
+ * Include a polyfill for the 'Buffer' variable
+ */
+ Buffer?: false | true | "mock";
+ /**
+ * Include a polyfill for the '__dirname' variable
+ */
+ __dirname?: false | true | "mock";
+ /**
+ * Include a polyfill for the '__filename' variable
+ */
+ __filename?: false | true | "mock";
+ /**
+ * Include a polyfill for the 'console' variable
+ */
+ console?: false | true | "mock";
+ /**
+ * Include a polyfill for the 'global' variable
+ */
+ global?: boolean;
+ /**
+ * Include a polyfill for the 'process' variable
+ */
+ process?: false | true | "mock";
+ /**
+ * Include a polyfill for the node.js module
+ */
+ [k: string]: false | true | "mock" | "empty";
+}
+/**
+ * Enables/Disables integrated optimizations
+ *
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "OptimizationOptions".
+ */
+export interface OptimizationOptions {
+ /**
+ * 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, 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" | "size" | "total-size" | false;
+ /**
+ * Concatenate modules when possible to generate less modules, more efficient code and enable more optimizations by the minimizer
+ */
+ concatenateModules?: boolean;
+ /**
+ * Also flag chunks as loaded which contain a subset of the modules
+ */
+ flagIncludedChunks?: boolean;
+ /**
+ * Use hashed module id instead module identifiers for better long term caching (deprecated, used moduleIds: hashed instead)
+ */
+ hashedModuleIds?: 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.
+ */
+ minimize?: boolean;
+ /**
+ * 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: short hashes as 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)
+ */
+ moduleIds?: "natural" | "named" | "hashed" | "size" | "total-size" | false;
+ /**
+ * Use readable chunk identifiers for better debugging (deprecated, used chunkIds: named instead)
+ */
+ namedChunks?: boolean;
+ /**
+ * Use readable module identifiers for better debugging (deprecated, used moduleIds: named instead)
+ */
+ namedModules?: boolean;
+ /**
+ * Avoid emitting assets when errors occur
+ */
+ noEmitOnErrors?: boolean;
+ /**
+ * Set process.env.NODE_ENV to a specific value
+ */
+ nodeEnv?: false | string;
+ /**
+ * Figure out a order of modules which results in the smallest initial bundle
+ */
+ occurrenceOrder?: boolean;
+ /**
+ * 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;
+ /**
+ * 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?:
+ | boolean
+ | ("single" | "multiple")
+ | {
+ /**
+ * The name or name factory for the runtime chunks
+ */
+ name?: string | Function;
+ };
+ /**
+ * Skip over modules which are flagged to contain no side effects when exports are not used
+ */
+ sideEffects?: 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
+ */
+ usedExports?: boolean;
+}
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "OptimizationSplitChunksOptions".
+ */
+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)
+ */
+ cacheGroups?: {
+ /**
+ * Configuration for a cache group
+ */
+ [k: string]:
+ | false
+ | Function
+ | string
+ | RegExp
+ | {
+ /**
+ * Sets the name delimiter for created chunks
+ */
+ automaticNameDelimiter?: string;
+ /**
+ * Sets the name prefix for created chunks
+ */
+ automaticNamePrefix?: 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") | Function;
+ /**
+ * Ignore minimum size, minimum chunks and maximum requests and always create chunks for this cache group
+ */
+ enforce?: boolean;
+ /**
+ * Sets the template for the filename for created chunks (Only works for initial chunks)
+ */
+ filename?: string;
+ /**
+ * Maximum number of requests which are accepted for on-demand loading
+ */
+ maxAsyncRequests?: number;
+ /**
+ * Maximum number of initial chunks which are accepted for an entry point
+ */
+ maxInitialRequests?: number;
+ /**
+ * Maximal size hint for the created chunks
+ */
+ maxSize?: number;
+ /**
+ * Minimum number of times a module has to be duplicated until it's considered for splitting
+ */
+ minChunks?: number;
+ /**
+ * Minimal size for the created chunk
+ */
+ minSize?: number;
+ /**
+ * Give chunks for this cache group a name (chunks with equal name are merged)
+ */
+ name?: boolean | Function | string;
+ /**
+ * 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
+ */
+ test?: Function | string | RegExp;
+ };
+ };
+ /**
+ * Select chunks for determining shared modules (defaults to "async", "initial" and "all" requires adding these chunks to the HTML)
+ */
+ chunks?: ("initial" | "async" | "all") | Function;
+ /**
+ * Options for modules not selected by any other cache group
+ */
+ fallbackCacheGroup?: {
+ /**
+ * Sets the name delimiter for created chunks
+ */
+ automaticNameDelimiter?: string;
+ /**
+ * Maximal size hint for the created chunks
+ */
+ maxSize?: number;
+ /**
+ * Minimal size for the created chunk
+ */
+ minSize?: number;
+ };
+ /**
+ * Sets the template for the filename for created chunks (Only works for initial chunks)
+ */
+ filename?: string;
+ /**
+ * 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;
+ /**
+ * Maximum number of initial chunks which are accepted for an entry point
+ */
+ maxInitialRequests?: number;
+ /**
+ * Maximal size hint for the created chunks
+ */
+ maxSize?: number;
+ /**
+ * Minimum number of times a module has to be duplicated until it's considered for splitting
+ */
+ minChunks?: number;
+ /**
+ * Minimal size for the created chunks
+ */
+ minSize?: number;
+ /**
+ * Give chunks created a name (chunks with equal name are merged)
+ */
+ name?: boolean | Function | string;
+}
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "OutputOptions".
+ */
+export interface OutputOptions {
+ /**
+ * Add a comment in the UMD wrapper.
+ */
+ auxiliaryComment?:
+ | string
+ | {
+ /**
+ * 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;
+ };
+ /**
+ * The callback function name used by webpack for loading of chunks in WebWorkers.
+ */
+ chunkCallbackName?: string;
+ /**
+ * The filename of non-entry chunks as relative path inside the `output.path` directory.
+ */
+ chunkFilename?: string;
+ /**
+ * Number of milliseconds before chunk request expires
+ */
+ chunkLoadTimeout?: number;
+ /**
+ * This option enables cross-origin loading of chunks.
+ */
+ crossOriginLoading?: false | "anonymous" | "use-credentials";
+ /**
+ * Similar to `output.devtoolModuleFilenameTemplate`, but used in the case of duplicate module identifiers.
+ */
+ devtoolFallbackModuleFilenameTemplate?: string | Function;
+ /**
+ * Enable line to line mapped mode for all/specified modules. Line to line mapped mode uses a simple SourceMap where each line of the generated source is mapped to the same line of the original source. It’s a performance optimization. Only use it if your performance need to be better and you are sure that input lines match which generated lines.
+ */
+ devtoolLineToLine?:
+ | boolean
+ | {
+ [k: string]: any;
+ };
+ /**
+ * Filename template string of function for the sources array in a generated SourceMap.
+ */
+ devtoolModuleFilenameTemplate?: string | Function;
+ /**
+ * 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?: string;
+ /**
+ * Specifies the name of each output file on disk. You must **not** specify an absolute path here! The `output.path` option determines the location on disk the files are written to, filename is used solely for naming the individual files.
+ */
+ filename?: string | Function;
+ /**
+ * An expression which is used to address the global object/scope in runtime code
+ */
+ globalObject?: string;
+ /**
+ * Digest type used for the hash
+ */
+ hashDigest?: string;
+ /**
+ * Number of chars which are used for the hash
+ */
+ hashDigestLength?: number;
+ /**
+ * Algorithm used for generation the hash (see node.js crypto package)
+ */
+ hashFunction?: string | (new () => import("../lib/util/createHash").Hash);
+ /**
+ * Any string which is added to the hash to salt it
+ */
+ hashSalt?: string;
+ /**
+ * The filename of the Hot Update Chunks. They are inside the output.path directory.
+ */
+ hotUpdateChunkFilename?: string | Function;
+ /**
+ * The JSONP function used by webpack for async loading of hot update chunks.
+ */
+ hotUpdateFunction?: string;
+ /**
+ * The filename of the Hot Update Main File. It is inside the `output.path` directory.
+ */
+ hotUpdateMainFilename?: string | Function;
+ /**
+ * The JSONP function used by webpack for async loading of chunks.
+ */
+ jsonpFunction?: string;
+ /**
+ * This option enables loading async chunks via a custom script type, such as script type="module"
+ */
+ jsonpScriptType?: false | "text/javascript" | "module";
+ /**
+ * If set, export the bundle as library. `output.library` is the name.
+ */
+ library?: string | string[] | LibraryCustomUmdObject;
+ /**
+ * Specify which export should be exposed as library
+ */
+ libraryExport?: string | ArrayOfStringValues;
+ /**
+ * Type of library
+ */
+ libraryTarget?:
+ | "var"
+ | "assign"
+ | "this"
+ | "window"
+ | "self"
+ | "global"
+ | "commonjs"
+ | "commonjs2"
+ | "commonjs-module"
+ | "amd"
+ | "amd-require"
+ | "umd"
+ | "umd2"
+ | "jsonp";
+ /**
+ * The output directory as **absolute path** (required).
+ */
+ path?: string;
+ /**
+ * Include comments with information about the modules.
+ */
+ pathinfo?: boolean;
+ /**
+ * The `publicPath` specifies the public URL address of the output files when referenced in a browser.
+ */
+ publicPath?: string | Function;
+ /**
+ * The filename of the SourceMaps for the JavaScript files. They are inside the `output.path` directory.
+ */
+ sourceMapFilename?: string;
+ /**
+ * Prefixes every line of the source in the bundle with this string.
+ */
+ sourcePrefix?: string;
+ /**
+ * Handles exceptions in module loading correctly at a performance cost.
+ */
+ strictModuleExceptionHandling?: boolean;
+ /**
+ * If `output.libraryTarget` is set to umd and `output.library` is set, setting this to true will name the AMD module.
+ */
+ umdNamedDefine?: boolean;
+ /**
+ * The filename of WebAssembly modules as relative path inside the `output.path` directory.
+ */
+ webassemblyModuleFilename?: string;
+}
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "LibraryCustomUmdObject".
+ */
+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 | ArrayOfStringValues;
+}
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "PerformanceOptions".
+ */
+export interface PerformanceOptions {
+ /**
+ * Filter function to select assets that are checked
+ */
+ assetFilter?: Function;
+ /**
+ * Sets the format of the hints: warnings, errors or nothing at all
+ */
+ hints?: false | "warning" | "error";
+ /**
+ * Filesize limit (in bytes) when exceeded, that webpack will provide performance hints
+ */
+ maxAssetSize?: number;
+ /**
+ * Total size of an entry point (in bytes)
+ */
+ maxEntrypointSize?: number;
+}
+/**
+ * This interface was referenced by `WebpackOptions`'s JSON-Schema
+ * via the `definition` "StatsOptions".
+ */
+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?: string;
+ /**
+ * add built at time information
+ */
+ builtAt?: boolean;
+ /**
+ * add also information about cached (not built) modules
+ */
+ cached?: boolean;
+ /**
+ * Show cached assets (setting this to `false` only shows emitted files)
+ */
+ cachedAssets?: boolean;
+ /**
+ * add children information
+ */
+ children?: boolean;
+ /**
+ * Display all chunk groups with the corresponding bundles
+ */
+ chunkGroups?: boolean;
+ /**
+ * add built modules information to chunk information
+ */
+ chunkModules?: boolean;
+ /**
+ * add the origins of chunks and chunk merging info
+ */
+ chunkOrigins?: boolean;
+ /**
+ * add chunk information
+ */
+ chunks?: boolean;
+ /**
+ * sort the chunks by that field
+ */
+ chunksSort?: 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;
+ /**
+ * add module depth in module graph
+ */
+ depth?: boolean;
+ /**
+ * Display the entry points with the corresponding bundles
+ */
+ entrypoints?: boolean;
+ /**
+ * add --env information
+ */
+ env?: boolean;
+ /**
+ * add details to errors (like resolving log)
+ */
+ errorDetails?: boolean;
+ /**
+ * add errors
+ */
+ errors?: boolean;
+ /**
+ * Please use excludeModules instead.
+ */
+ exclude?: FilterTypes | boolean;
+ /**
+ * Suppress assets that match the specified filters. Filters can be Strings, RegExps or Functions
+ */
+ excludeAssets?: FilterTypes;
+ /**
+ * Suppress modules that match the specified filters. Filters can be Strings, RegExps, Booleans or Functions
+ */
+ excludeModules?: FilterTypes | boolean;
+ /**
+ * add the hash of the compilation
+ */
+ hash?: boolean;
+ /**
+ * Set the maximum number of modules to be shown
+ */
+ maxModules?: number;
+ /**
+ * 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?: string;
+ /**
+ * add information about modules nested in other modules (like with module concatenation)
+ */
+ nestedModules?: boolean;
+ /**
+ * show reasons why optimization bailed out for modules
+ */
+ optimizationBailout?: boolean;
+ /**
+ * Add output path information
+ */
+ outputPath?: boolean;
+ /**
+ * add performance hint flags
+ */
+ performance?: boolean;
+ /**
+ * show exports provided by modules
+ */
+ providedExports?: boolean;
+ /**
+ * Add public path information
+ */
+ publicPath?: boolean;
+ /**
+ * add information about the reasons why modules are included
+ */
+ reasons?: 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;
+ /**
+ * Suppress warnings that match the specified filters. Filters can be Strings, RegExps or Functions
+ */
+ warningsFilter?: FilterTypes;
+}
diff --git a/node_modules/webpack/declarations/plugins/BannerPlugin.d.ts b/node_modules/webpack/declarations/plugins/BannerPlugin.d.ts
new file mode 100644
index 00000000..4b381059
--- /dev/null
+++ b/node_modules/webpack/declarations/plugins/BannerPlugin.d.ts
@@ -0,0 +1,51 @@
+/**
+ * This file was automatically generated.
+ * DO NOT MODIFY BY HAND.
+ * Run `yarn special-lint-fix` to update
+ */
+
+export type BannerPluginArgument =
+ | BannerPluginOptions
+ | BannerFunction
+ | string;
+/**
+ * The banner as function, it will be wrapped in a comment
+ */
+export type BannerFunction = (
+ data: {
+ hash: string;
+ chunk: import("../../lib/Chunk");
+ filename: string;
+ basename: string;
+ query: string;
+ }
+) => string;
+export type Rules = Rule[] | Rule;
+export type Rule = RegExp | string;
+
+export interface BannerPluginOptions {
+ /**
+ * Specifies the banner
+ */
+ banner: BannerFunction | string;
+ /**
+ * If true, the banner will only be added to the entry chunks
+ */
+ entryOnly?: boolean;
+ /**
+ * Exclude all modules matching any of these conditions
+ */
+ exclude?: Rules;
+ /**
+ * Include all modules matching any of these conditions
+ */
+ include?: Rules;
+ /**
+ * If true, banner will not be wrapped in a comment
+ */
+ raw?: boolean;
+ /**
+ * Include all modules that pass test assertion
+ */
+ test?: Rules;
+}
diff --git a/node_modules/webpack/declarations/plugins/DllPlugin.d.ts b/node_modules/webpack/declarations/plugins/DllPlugin.d.ts
new file mode 100644
index 00000000..addbce54
--- /dev/null
+++ b/node_modules/webpack/declarations/plugins/DllPlugin.d.ts
@@ -0,0 +1,32 @@
+/**
+ * This file was automatically generated.
+ * DO NOT MODIFY BY HAND.
+ * Run `yarn special-lint-fix` to update
+ */
+
+export interface DllPluginOptions {
+ /**
+ * Context of requests in the manifest file (defaults to the webpack context)
+ */
+ context?: string;
+ /**
+ * If true, only entry points will be exposed
+ */
+ entryOnly?: boolean;
+ /**
+ * If true, manifest json file (output) will be formatted
+ */
+ format?: boolean;
+ /**
+ * Name of the exposed dll function (external name, use value of 'output.library')
+ */
+ name?: string;
+ /**
+ * Absolute path to the manifest json file (output)
+ */
+ path: string;
+ /**
+ * Type of the dll bundle (external type, use value of 'output.libraryTarget')
+ */
+ type?: string;
+}
diff --git a/node_modules/webpack/declarations/plugins/DllReferencePlugin.d.ts b/node_modules/webpack/declarations/plugins/DllReferencePlugin.d.ts
new file mode 100644
index 00000000..73dfa522
--- /dev/null
+++ b/node_modules/webpack/declarations/plugins/DllReferencePlugin.d.ts
@@ -0,0 +1,126 @@
+/**
+ * This file was automatically generated.
+ * DO NOT MODIFY BY HAND.
+ * Run `yarn special-lint-fix` to update
+ */
+
+export type DllReferencePluginOptions =
+ | {
+ /**
+ * (absolute path) context of requests in the manifest (or content property)
+ */
+ context?: string;
+ /**
+ * Extensions used to resolve modules in the dll bundle (only used when using 'scope')
+ */
+ extensions?: string[];
+ /**
+ * An object containing content and name or a string to the absolute path of the JSON manifest to be loaded upon compilation
+ */
+ manifest: DllReferencePluginOptionsManifest | string;
+ /**
+ * The name where the dll is exposed (external name, defaults to manifest.name)
+ */
+ name?: string;
+ /**
+ * Prefix which is used for accessing the content of the dll
+ */
+ scope?: string;
+ /**
+ * How the dll is exposed (libraryTarget, defaults to manifest.type)
+ */
+ sourceType?: DllReferencePluginOptionsSourceType;
+ /**
+ * The way how the export of the dll bundle is used
+ */
+ type?: "require" | "object";
+ }
+ | {
+ /**
+ * The mappings from request to module info
+ */
+ content: DllReferencePluginOptionsContent;
+ /**
+ * (absolute path) context of requests in the manifest (or content property)
+ */
+ context?: string;
+ /**
+ * Extensions used to resolve modules in the dll bundle (only used when using 'scope')
+ */
+ extensions?: string[];
+ /**
+ * The name where the dll is exposed (external name)
+ */
+ name: string;
+ /**
+ * Prefix which is used for accessing the content of the dll
+ */
+ scope?: string;
+ /**
+ * How the dll is exposed (libraryTarget)
+ */
+ sourceType?: DllReferencePluginOptionsSourceType;
+ /**
+ * The way how the export of the dll bundle is used
+ */
+ type?: "require" | "object";
+ };
+/**
+ * The type how the dll is exposed (external type)
+ */
+export type DllReferencePluginOptionsSourceType =
+ | "var"
+ | "assign"
+ | "this"
+ | "window"
+ | "global"
+ | "commonjs"
+ | "commonjs2"
+ | "commonjs-module"
+ | "amd"
+ | "amd-require"
+ | "umd"
+ | "umd2"
+ | "jsonp";
+
+/**
+ * An object containing content, name and type
+ */
+export interface DllReferencePluginOptionsManifest {
+ /**
+ * The mappings from request to module info
+ */
+ content: DllReferencePluginOptionsContent;
+ /**
+ * The name where the dll is exposed (external name)
+ */
+ name?: string;
+ /**
+ * The type how the dll is exposed (external type)
+ */
+ type?: DllReferencePluginOptionsSourceType;
+}
+/**
+ * The mappings from request to module info
+ */
+export interface DllReferencePluginOptionsContent {
+ /**
+ * Module info
+ */
+ [k: string]: {
+ /**
+ * Meta information about the module
+ */
+ buildMeta?: {
+ [k: string]: any;
+ };
+ /**
+ * Information about the provided exports of the module
+ */
+ exports?: true | string[];
+ /**
+ * Module ID
+ */
+ id: number | string;
+ };
+}
diff --git a/node_modules/webpack/declarations/plugins/HashedModuleIdsPlugin.d.ts b/node_modules/webpack/declarations/plugins/HashedModuleIdsPlugin.d.ts
new file mode 100644
index 00000000..571ab60a
--- /dev/null
+++ b/node_modules/webpack/declarations/plugins/HashedModuleIdsPlugin.d.ts
@@ -0,0 +1,24 @@
+/**
+ * This file was automatically generated.
+ * DO NOT MODIFY BY HAND.
+ * Run `yarn special-lint-fix` to update
+ */
+
+export interface HashedModuleIdsPluginOptions {
+ /**
+ * The context directory for creating names.
+ */
+ context?: string;
+ /**
+ * The encoding to use when generating the hash, defaults to 'base64'. All encodings from Node.JS' hash.digest are supported.
+ */
+ hashDigest?: "hex" | "latin1" | "base64";
+ /**
+ * The prefix length of the hash digest to use, defaults to 4.
+ */
+ hashDigestLength?: number;
+ /**
+ * The hashing algorithm to use, defaults to 'md5'. All functions from Node.JS' crypto.createHash are supported.
+ */
+ hashFunction?: string;
+}
diff --git a/node_modules/webpack/declarations/plugins/IgnorePlugin.d.ts b/node_modules/webpack/declarations/plugins/IgnorePlugin.d.ts
new file mode 100644
index 00000000..01ac0813
--- /dev/null
+++ b/node_modules/webpack/declarations/plugins/IgnorePlugin.d.ts
@@ -0,0 +1,27 @@
+/**
+ * This file was automatically generated.
+ * DO NOT MODIFY BY HAND.
+ * Run `yarn special-lint-fix` to update
+ */
+
+export type IgnorePluginOptions =
+ | {
+ /**
+ * A RegExp to test the context (directory) against
+ */
+ contextRegExp?: RegExp;
+ /**
+ * A RegExp to test the request against
+ */
+ resourceRegExp?: RegExp;
+ }
+ | {
+ /**
+ * A filter function for context
+ */
+ checkContext?: ((context: string) => boolean);
+ /**
+ * A filter function for resource
+ */
+ checkResource?: ((resource: string) => boolean);
+ };
diff --git a/node_modules/webpack/declarations/plugins/LoaderOptionsPlugin.d.ts b/node_modules/webpack/declarations/plugins/LoaderOptionsPlugin.d.ts
new file mode 100644
index 00000000..cb48ecc2
--- /dev/null
+++ b/node_modules/webpack/declarations/plugins/LoaderOptionsPlugin.d.ts
@@ -0,0 +1,27 @@
+/**
+ * This file was automatically generated.
+ * DO NOT MODIFY BY HAND.
+ * Run `yarn special-lint-fix` to update
+ */
+
+export interface LoaderOptionsPluginOptions {
+ /**
+ * Whether loaders should be in debug mode or not. debug will be removed as of webpack 3
+ */
+ debug?: boolean;
+ /**
+ * Where loaders can be switched to minimize mode
+ */
+ minimize?: boolean;
+ /**
+ * A configuration object that can be used to configure older loaders
+ */
+ options?: {
+ /**
+ * The context that can be used to configure older loaders
+ */
+ context?: string;
+ [k: string]: any;
+ };
+ [k: string]: any;
+}
diff --git a/node_modules/webpack/declarations/plugins/ProgressPlugin.d.ts b/node_modules/webpack/declarations/plugins/ProgressPlugin.d.ts
new file mode 100644
index 00000000..78d4f74a
--- /dev/null
+++ b/node_modules/webpack/declarations/plugins/ProgressPlugin.d.ts
@@ -0,0 +1,42 @@
+/**
+ * This file was automatically generated.
+ * DO NOT MODIFY BY HAND.
+ * Run `yarn special-lint-fix` to update
+ */
+
+export type ProgressPluginArgument = ProgressPluginOptions | HandlerFunction;
+/**
+ * Function that executes for every progress step
+ */
+export type HandlerFunction = ((
+ percentage: number,
+ msg: string,
+ ...args: string[]
+) => void);
+
+export interface ProgressPluginOptions {
+ /**
+ * Show active modules count and one active module in progress message
+ */
+ activeModules?: boolean;
+ /**
+ * Show entries count in progress message
+ */
+ entries?: boolean;
+ /**
+ * Function that executes for every progress step
+ */
+ handler?: HandlerFunction;
+ /**
+ * Show modules count in progress message
+ */
+ modules?: boolean;
+ /**
+ * Minimum modules count to start with. Only for mode=modules. Default: 500
+ */
+ modulesCount?: number;
+ /**
+ * Collect profile data for progress steps. Default: false
+ */
+ profile?: true | false | null;
+}
diff --git a/node_modules/webpack/declarations/plugins/SourceMapDevToolPlugin.d.ts b/node_modules/webpack/declarations/plugins/SourceMapDevToolPlugin.d.ts
new file mode 100644
index 00000000..76421b50
--- /dev/null
+++ b/node_modules/webpack/declarations/plugins/SourceMapDevToolPlugin.d.ts
@@ -0,0 +1,94 @@
+/**
+ * This file was automatically generated.
+ * DO NOT MODIFY BY HAND.
+ * Run `yarn special-lint-fix` to update
+ */
+
+/**
+ * This interface was referenced by `SourceMapDevToolPluginOptions`'s JSON-Schema
+ * via the `definition` "rules".
+ */
+export type Rules = Rule[] | Rule;
+/**
+ * This interface was referenced by `SourceMapDevToolPluginOptions`'s JSON-Schema
+ * via the `definition` "rule".
+ */
+export type Rule = RegExp | string;
+
+export interface SourceMapDevToolPluginOptions {
+ /**
+ * Appends the given value to the original asset. Usually the #sourceMappingURL comment. [url] is replaced with a URL to the source map file. false disables the appending
+ */
+ append?: (false | null) | string;
+ /**
+ * Indicates whether column mappings should be used (defaults to true)
+ */
+ columns?: boolean;
+ /**
+ * Exclude modules that match the given value from source map generation
+ */
+ exclude?: Rules;
+ /**
+ * Generator string or function to create identifiers of modules for the 'sources' array in the SourceMap used only if 'moduleFilenameTemplate' would result in a conflict
+ */
+ fallbackModuleFilenameTemplate?: Function | string;
+ /**
+ * Path prefix to which the [file] placeholder is relative to
+ */
+ fileContext?: string;
+ /**
+ * Defines the output filename of the SourceMap (will be inlined if no value is provided)
+ */
+ filename?: (false | null) | string;
+ /**
+ * Include source maps for module paths that match the given value
+ */
+ include?: Rules;
+ /**
+ * (deprecated) try to map original files line to line to generated files
+ */
+ lineToLine?:
+ | boolean
+ | {
+ /**
+ * Exclude modules that match the given value from source map generation
+ */
+ exclude?: Rules;
+ /**
+ * Include source maps for module paths that match the given value
+ */
+ include?: Rules;
+ /**
+ * Include source maps for modules based on their extension (defaults to .js and .css)
+ */
+ test?: Rules;
+ };
+ /**
+ * Indicates whether SourceMaps from loaders should be used (defaults to true)
+ */
+ module?: boolean;
+ /**
+ * Generator string or function to create identifiers of modules for the 'sources' array in the SourceMap
+ */
+ moduleFilenameTemplate?: Function | string;
+ /**
+ * Namespace prefix to allow multiple webpack roots in the devtools
+ */
+ namespace?: string;
+ /**
+ * Omit the 'sourceContents' array from the SourceMap
+ */
+ noSources?: boolean;
+ /**
+ * Provide a custom public path for the SourceMapping comment
+ */
+ publicPath?: string;
+ /**
+ * Provide a custom value for the 'sourceRoot' property in the SourceMap
+ */
+ sourceRoot?: string;
+ /**
+ * Include source maps for modules based on their extension (defaults to .js and .css)
+ */
+ test?: Rules;
+}
diff --git a/node_modules/webpack/declarations/plugins/WatchIgnorePlugin.d.ts b/node_modules/webpack/declarations/plugins/WatchIgnorePlugin.d.ts
new file mode 100644
index 00000000..05c85750
--- /dev/null
+++ b/node_modules/webpack/declarations/plugins/WatchIgnorePlugin.d.ts
@@ -0,0 +1,10 @@
+/**
+ * This file was automatically generated.
+ * DO NOT MODIFY BY HAND.
+ * Run `yarn special-lint-fix` to update
+ */
+
+/**
+ * A list of RegExps or absolute paths to directories or files that should be ignored
+ */
+export type WatchIgnorePluginOptions = (string | RegExp)[];
diff --git a/node_modules/webpack/declarations/plugins/debug/ProfilingPlugin.d.ts b/node_modules/webpack/declarations/plugins/debug/ProfilingPlugin.d.ts
new file mode 100644
index 00000000..d3cd664a
--- /dev/null
+++ b/node_modules/webpack/declarations/plugins/debug/ProfilingPlugin.d.ts
@@ -0,0 +1,12 @@
+/**
+ * This file was automatically generated.
+ * DO NOT MODIFY BY HAND.
+ * Run `yarn special-lint-fix` to update
+ */
+
+export interface ProfilingPluginOptions {
+ /**
+ * Path to the output file e.g. `profiling/events.json`. Defaults to `events.json`.
+ */
+ outputPath?: string;
+}
diff --git a/node_modules/webpack/declarations/plugins/optimize/AggressiveSplittingPlugin.d.ts b/node_modules/webpack/declarations/plugins/optimize/AggressiveSplittingPlugin.d.ts
new file mode 100644
index 00000000..9f5360c4
--- /dev/null
+++ b/node_modules/webpack/declarations/plugins/optimize/AggressiveSplittingPlugin.d.ts
@@ -0,0 +1,24 @@
+/**
+ * This file was automatically generated.
+ * DO NOT MODIFY BY HAND.
+ * Run `yarn special-lint-fix` to update
+ */
+
+export interface AggressiveSplittingPluginOptions {
+ /**
+ * Default: 0
+ */
+ chunkOverhead?: number;
+ /**
+ * Default: 1
+ */
+ entryChunkMultiplicator?: number;
+ /**
+ * Byte, maxsize of per file. Default: 51200
+ */
+ maxSize?: number;
+ /**
+ * Byte, split point. Default: 30720
+ */
+ minSize?: number;
+}
diff --git a/node_modules/webpack/declarations/plugins/optimize/LimitChunkCountPlugin.d.ts b/node_modules/webpack/declarations/plugins/optimize/LimitChunkCountPlugin.d.ts
new file mode 100644
index 00000000..8cd59ed6
--- /dev/null
+++ b/node_modules/webpack/declarations/plugins/optimize/LimitChunkCountPlugin.d.ts
@@ -0,0 +1,16 @@
+/**
+ * This file was automatically generated.
+ * DO NOT MODIFY BY HAND.
+ * Run `yarn special-lint-fix` to update
+ */
+
+export interface LimitChunkCountPluginOptions {
+ /**
+ * Limit the maximum number of chunks using a value greater greater than or equal to 1
+ */
+ maxChunks?: number;
+ /**
+ * Set a minimum chunk size
+ */
+ minChunkSize?: number;
+}
diff --git a/node_modules/webpack/declarations/plugins/optimize/MinChunkSizePlugin.d.ts b/node_modules/webpack/declarations/plugins/optimize/MinChunkSizePlugin.d.ts
new file mode 100644
index 00000000..61d20fd9
--- /dev/null
+++ b/node_modules/webpack/declarations/plugins/optimize/MinChunkSizePlugin.d.ts
@@ -0,0 +1,12 @@
+/**
+ * This file was automatically generated.
+ * DO NOT MODIFY BY HAND.
+ * Run `yarn special-lint-fix` to update
+ */
+
+export interface MinChunkSizePluginOptions {
+ /**
+ * Minimum number of characters
+ */
+ minChunkSize: number;
+}
diff --git a/node_modules/webpack/declarations/plugins/optimize/OccurrenceOrderChunkIdsPlugin.d.ts b/node_modules/webpack/declarations/plugins/optimize/OccurrenceOrderChunkIdsPlugin.d.ts
new file mode 100644
index 00000000..0396f554
--- /dev/null
+++ b/node_modules/webpack/declarations/plugins/optimize/OccurrenceOrderChunkIdsPlugin.d.ts
@@ -0,0 +1,12 @@
+/**
+ * This file was automatically generated.
+ * DO NOT MODIFY BY HAND.
+ * Run `yarn special-lint-fix` to update
+ */
+
+export interface OccurrenceOrderChunkIdsPluginOptions {
+ /**
+ * Prioritise initial size over total size
+ */
+ prioritiseInitial?: boolean;
+}
diff --git a/node_modules/webpack/declarations/plugins/optimize/OccurrenceOrderModuleIdsPlugin.d.ts b/node_modules/webpack/declarations/plugins/optimize/OccurrenceOrderModuleIdsPlugin.d.ts
new file mode 100644
index 00000000..c29e0e95
--- /dev/null
+++ b/node_modules/webpack/declarations/plugins/optimize/OccurrenceOrderModuleIdsPlugin.d.ts
@@ -0,0 +1,12 @@
+/**
+ * This file was automatically generated.
+ * DO NOT MODIFY BY HAND.
+ * Run `yarn special-lint-fix` to update
+ */
+
+export interface OccurrenceOrderModuleIdsPluginOptions {
+ /**
+ * Prioritise initial size over total size
+ */
+ prioritiseInitial?: boolean;
+}