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.

AggressiveSplittingPlugin.d.ts 424B

123456789101112131415161718192021222324
  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 AggressiveSplittingPluginOptions {
  7. /**
  8. * Default: 0
  9. */
  10. chunkOverhead?: number;
  11. /**
  12. * Default: 1
  13. */
  14. entryChunkMultiplicator?: number;
  15. /**
  16. * Byte, maxsize of per file. Default: 51200
  17. */
  18. maxSize?: number;
  19. /**
  20. * Byte, split point. Default: 30720
  21. */
  22. minSize?: number;
  23. }