source: trip-planner-front/node_modules/webpack/schemas/plugins/WatchIgnorePlugin.json@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 613 bytes
Line 
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}
Note: See TracBrowser for help on using the repository browser.