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.

18 lines
430 B

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