You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
350 B

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