Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

LoaderOptionsPlugin.json 773B

123456789101112131415161718192021222324252627
  1. {
  2. "title": "LoaderOptionsPluginOptions",
  3. "type": "object",
  4. "additionalProperties": true,
  5. "properties": {
  6. "debug": {
  7. "description": "Whether loaders should be in debug mode or not. debug will be removed as of webpack 3",
  8. "type": "boolean"
  9. },
  10. "minimize": {
  11. "description": "Where loaders can be switched to minimize mode",
  12. "type": "boolean"
  13. },
  14. "options": {
  15. "description": "A configuration object that can be used to configure older loaders",
  16. "type": "object",
  17. "additionalProperties": true,
  18. "properties": {
  19. "context": {
  20. "description": "The context that can be used to configure older loaders",
  21. "type": "string",
  22. "absolutePath": true
  23. }
  24. }
  25. }
  26. }
  27. }