webpack/declarations/plugins/optimize/LimitChunkCountPlugin.d.ts

21 lines
434 B
TypeScript
Raw Normal View History

/*
* This file was automatically generated.
* DO NOT MODIFY BY HAND.
2025-05-02 00:16:09 +08:00
* Run `yarn fix:special` to update
*/
2018-09-20 16:13:38 +08:00
export interface LimitChunkCountPluginOptions {
2018-09-25 22:07:42 +08:00
/**
* Constant overhead for a chunk.
2018-09-25 22:07:42 +08:00
*/
chunkOverhead?: number;
/**
* Multiplicator for initial chunks.
2018-09-25 22:07:42 +08:00
*/
entryChunkMultiplicator?: number;
/**
* Limit the maximum number of chunks using a value greater greater than or equal to 1.
*/
maxChunks: number;
}