From 26105034da4fcce7ac883c899d781f016559310d Mon Sep 17 00:00:00 2001 From: ruki Date: Thu, 8 Nov 2018 00:38:48 +0800 Subject: switch to vuepress --- .../webpack/schemas/plugins/IgnorePlugin.json | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 node_modules/webpack/schemas/plugins/IgnorePlugin.json (limited to 'node_modules/webpack/schemas/plugins/IgnorePlugin.json') diff --git a/node_modules/webpack/schemas/plugins/IgnorePlugin.json b/node_modules/webpack/schemas/plugins/IgnorePlugin.json new file mode 100644 index 00000000..83cd78ad --- /dev/null +++ b/node_modules/webpack/schemas/plugins/IgnorePlugin.json @@ -0,0 +1,37 @@ +{ + "title": "IgnorePluginOptions", + "oneOf": [ + { + "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" + } + } + }, + { + "type": "object", + "additionalProperties": false, + "properties": { + "checkContext": { + "description": "A filter function for context", + "instanceof": "Function", + "tsType": "((context: string) => boolean)" + }, + "checkResource": { + "description": "A filter function for resource", + "instanceof": "Function", + "tsType": "((resource: string) => boolean)" + } + } + } + ] +} -- cgit v1.2.3