AggressiveSplittingPlugin.json 615 B

1234567891011121314151617181920212223
  1. {
  2. "title": "AggressiveSplittingPluginOptions",
  3. "type": "object",
  4. "additionalProperties": false,
  5. "properties": {
  6. "chunkOverhead": {
  7. "description": "Extra cost for each chunk (Default: 9.8kiB).",
  8. "type": "number"
  9. },
  10. "entryChunkMultiplicator": {
  11. "description": "Extra cost multiplicator for entry chunks (Default: 10).",
  12. "type": "number"
  13. },
  14. "maxSize": {
  15. "description": "Byte, max size of per file (Default: 50kiB).",
  16. "type": "number"
  17. },
  18. "minSize": {
  19. "description": "Byte, split point. (Default: 30kiB).",
  20. "type": "number"
  21. }
  22. }
  23. }