mirror of https://github.com/webpack/webpack.git
21 lines
434 B
TypeScript
21 lines
434 B
TypeScript
/*
|
|
* This file was automatically generated.
|
|
* DO NOT MODIFY BY HAND.
|
|
* Run `yarn fix:special` to update
|
|
*/
|
|
|
|
export interface LimitChunkCountPluginOptions {
|
|
/**
|
|
* Constant overhead for a chunk.
|
|
*/
|
|
chunkOverhead?: number;
|
|
/**
|
|
* Multiplicator for initial chunks.
|
|
*/
|
|
entryChunkMultiplicator?: number;
|
|
/**
|
|
* Limit the maximum number of chunks using a value greater greater than or equal to 1.
|
|
*/
|
|
maxChunks: number;
|
|
}
|