LoaderOptionsPlugin.json 732 B

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