WatchIgnorePlugin.json 613 B

12345678910111213141516171819202122232425
  1. {
  2. "title": "WatchIgnorePluginOptions",
  3. "type": "object",
  4. "additionalProperties": false,
  5. "properties": {
  6. "paths": {
  7. "description": "A list of RegExps or absolute paths to directories or files that should be ignored.",
  8. "type": "array",
  9. "items": {
  10. "description": "RegExp or absolute path to directories or files that should be ignored.",
  11. "anyOf": [
  12. {
  13. "instanceof": "RegExp",
  14. "tsType": "RegExp"
  15. },
  16. {
  17. "type": "string"
  18. }
  19. ]
  20. },
  21. "minItems": 1
  22. }
  23. },
  24. "required": ["paths"]
  25. }