webpack
Version:
Packs ECMAScript/CommonJs/AMD modules for the browser. Allows you to split your codebase into multiple bundles, which can be loaded on demand. Supports loaders to preprocess files, i.e. json, jsx, es7, css, less, ... and your custom stuff.
26 lines (25 loc) • 613 B
JSON
{
"title": "WatchIgnorePluginOptions",
"type": "object",
"additionalProperties": false,
"properties": {
"paths": {
"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.",
"anyOf": [
{
"instanceof": "RegExp",
"tsType": "RegExp"
},
{
"type": "string"
}
]
},
"minItems": 1
}
},
"required": ["paths"]
}