aboutsummaryrefslogtreecommitdiff
path: root/node_modules/webpack/schemas/plugins/WatchIgnorePlugin.json
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/webpack/schemas/plugins/WatchIgnorePlugin.json')
-rw-r--r--node_modules/webpack/schemas/plugins/WatchIgnorePlugin.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/node_modules/webpack/schemas/plugins/WatchIgnorePlugin.json b/node_modules/webpack/schemas/plugins/WatchIgnorePlugin.json
new file mode 100644
index 00000000..b08d50ba
--- /dev/null
+++ b/node_modules/webpack/schemas/plugins/WatchIgnorePlugin.json
@@ -0,0 +1,18 @@
+{
+ "title": "WatchIgnorePluginOptions",
+ "description": "A list of RegExps or absolute paths to directories or files that should be ignored",
+ "type": "array",
+ "items": {
+ "description": "RegExp or absolute path to directories or files that should be ignored",
+ "oneOf": [
+ {
+ "type": "string"
+ },
+ {
+ "instanceof": "RegExp",
+ "tsType": "RegExp"
+ }
+ ]
+ },
+ "minItems": 1
+}