2020-05-12 21:58:14 +08:00
|
|
|
/*
|
2018-09-18 19:57:44 +08:00
|
|
|
* 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-18 19:57:44 +08:00
|
|
|
*/
|
|
|
|
|
2018-09-20 16:13:38 +08:00
|
|
|
export interface LimitChunkCountPluginOptions {
|
2018-09-25 22:07:42 +08:00
|
|
|
/**
|
2020-03-09 21:14:44 +08:00
|
|
|
* Constant overhead for a chunk.
|
2018-09-25 22:07:42 +08:00
|
|
|
*/
|
|
|
|
chunkOverhead?: number;
|
|
|
|
/**
|
2020-03-09 21:14:44 +08:00
|
|
|
* Multiplicator for initial chunks.
|
2018-09-25 22:07:42 +08:00
|
|
|
*/
|
|
|
|
entryChunkMultiplicator?: number;
|
2018-09-18 19:57:44 +08:00
|
|
|
/**
|
2020-03-09 21:14:44 +08:00
|
|
|
* Limit the maximum number of chunks using a value greater greater than or equal to 1.
|
2018-09-18 19:57:44 +08:00
|
|
|
*/
|
2019-09-25 21:54:36 +08:00
|
|
|
maxChunks: number;
|
2018-09-18 19:57:44 +08:00
|
|
|
}
|