WatchIgnorePlugin.json 363 B

12345678910111213141516
  1. {
  2. "description": "A list of RegExps or absolute paths to directories or files that should be ignored",
  3. "type": "array",
  4. "items": {
  5. "description": "RegExp or absolute path to directories or files that should be ignored",
  6. "oneOf": [
  7. {
  8. "type": "string"
  9. },
  10. {
  11. "instanceof": "RegExp"
  12. }
  13. ]
  14. },
  15. "minItems": 1
  16. }