You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
773 B

4 years ago
  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. }