DllPlugin.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "title": "DllPluginOptions",
  3. "type": "object",
  4. "additionalProperties": false,
  5. "properties": {
  6. "context": {
  7. "description": "Context of requests in the manifest file (defaults to the webpack context).",
  8. "type": "string",
  9. "minLength": 1
  10. },
  11. "entryOnly": {
  12. "description": "If true, only entry points will be exposed (default: true).",
  13. "type": "boolean"
  14. },
  15. "format": {
  16. "description": "If true, manifest json file (output) will be formatted.",
  17. "type": "boolean"
  18. },
  19. "name": {
  20. "description": "Name of the exposed dll function (external name, use value of 'output.library').",
  21. "type": "string",
  22. "minLength": 1
  23. },
  24. "path": {
  25. "description": "Absolute path to the manifest json file (output).",
  26. "type": "string",
  27. "minLength": 1
  28. },
  29. "type": {
  30. "description": "Type of the dll bundle (external type, use value of 'output.libraryTarget').",
  31. "type": "string",
  32. "minLength": 1
  33. }
  34. },
  35. "required": ["path"]
  36. }