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.
|
|
|
|
* Run `yarn special-lint-fix` to update
|
|
|
|
*/
|
|
|
|
|
2018-09-20 16:13:38 +08:00
|
|
|
export interface AggressiveSplittingPluginOptions {
|
2018-09-18 19:57:44 +08:00
|
|
|
/**
|
2020-03-09 21:14:44 +08:00
|
|
|
* Extra cost for each chunk (Default: 9.8kiB).
|
2018-09-18 19:57:44 +08:00
|
|
|
*/
|
|
|
|
chunkOverhead?: number;
|
|
|
|
/**
|
2020-03-09 21:14:44 +08:00
|
|
|
* Extra cost multiplicator for entry chunks (Default: 10).
|
2018-09-18 19:57:44 +08:00
|
|
|
*/
|
|
|
|
entryChunkMultiplicator?: number;
|
2018-09-19 16:17:33 +08:00
|
|
|
/**
|
2020-03-13 17:03:17 +08:00
|
|
|
* Byte, max size of per file (Default: 50kiB).
|
2018-09-19 16:17:33 +08:00
|
|
|
*/
|
|
|
|
maxSize?: number;
|
|
|
|
/**
|
2020-03-09 21:14:44 +08:00
|
|
|
* Byte, split point. (Default: 30kiB).
|
2018-09-19 16:17:33 +08:00
|
|
|
*/
|
|
|
|
minSize?: number;
|
2018-09-18 19:57:44 +08:00
|
|
|
}
|