Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

31 строка
842 B

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