UNPKG

350 BTypeScriptView Raw
1/**
2 * This file was automatically generated.
3 * DO NOT MODIFY BY HAND.
4 * Run `yarn special-lint-fix` to update
5 */
6
7export interface LimitChunkCountPluginOptions {
8 /**
9 * Limit the maximum number of chunks using a value greater greater than or equal to 1
10 */
11 maxChunks?: number;
12 /**
13 * Set a minimum chunk size
14 */
15 minChunkSize?: number;
16}