DllPlugin.json 850 B

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