Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
35 lines
903 B
Plaintext
35 lines
903 B
Plaintext
{
|
|
"title": "IgnorePluginOptions",
|
|
"anyOf": [
|
|
{
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"contextRegExp": {
|
|
"description": "A RegExp to test the context (directory) against.",
|
|
"instanceof": "RegExp",
|
|
"tsType": "RegExp"
|
|
},
|
|
"resourceRegExp": {
|
|
"description": "A RegExp to test the request against.",
|
|
"instanceof": "RegExp",
|
|
"tsType": "RegExp"
|
|
}
|
|
},
|
|
"required": ["resourceRegExp"]
|
|
},
|
|
{
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"checkResource": {
|
|
"description": "A filter function for resource and context.",
|
|
"instanceof": "Function",
|
|
"tsType": "(import(\"../../lib/IgnorePlugin\").CheckResourceFn)"
|
|
}
|
|
},
|
|
"required": ["checkResource"]
|
|
}
|
|
]
|
|
}
|