/var/www/cobraambalaj/node_modules/webpack/schemas/plugins
NameSizeModeActions
container/-0755rm
debug/-0755rm
ids/-0755rm
optimize/-0755rm
sharing/-0755rm
BannerPlugin.json25300644editdlrm
DllPlugin.json10410644editdlrm
DllReferencePlugin.json60890644editdlrm
HashedModuleIdsPlugin.json8460644editdlrm
IgnorePlugin.json8240644editdlrm
JsonModulesPluginParser.json3340644editdlrm
LoaderOptionsPlugin.json7770644editdlrm
ProgressPlugin.json21490644editdlrm
SourceMapDevToolPlugin.json41460644editdlrm
WatchIgnorePlugin.json6130644editdlrm
Edit: /var/www/cobraambalaj/node_modules/webpack/schemas/plugins/BannerPlugin.json (2530B)
{ "definitions": { "BannerFunction": { "description": "The banner as function, it will be wrapped in a comment.", "instanceof": "Function", "tsType": "(data: { hash: string, chunk: import('../../lib/Chunk'), filename: string }) => string" }, "Rule": { "description": "Filtering rule as regex or string.", "anyOf": [ { "instanceof": "RegExp", "tsType": "RegExp" }, { "type": "string", "minLength": 1 } ] }, "Rules": { "description": "Filtering rules.", "anyOf": [ { "type": "array", "items": { "description": "A rule condition.", "oneOf": [ { "$ref": "#/definitions/Rule" } ] } }, { "$ref": "#/definitions/Rule" } ] } }, "title": "BannerPluginArgument", "anyOf": [ { "description": "The banner as string, it will be wrapped in a comment.", "type": "string", "minLength": 1 }, { "title": "BannerPluginOptions", "type": "object", "additionalProperties": false, "properties": { "banner": { "description": "Specifies the banner.", "anyOf": [ { "type": "string" }, { "$ref": "#/definitions/BannerFunction" } ] }, "entryOnly": { "description": "If true, the banner will only be added to the entry chunks.", "type": "boolean" }, "exclude": { "description": "Exclude all modules matching any of these conditions.", "oneOf": [ { "$ref": "#/definitions/Rules" } ] }, "include": { "description": "Include all modules matching any of these conditions.", "oneOf": [ { "$ref": "#/definitions/Rules" } ] }, "raw": { "description": "If true, banner will not be wrapped in a comment.", "type": "boolean" }, "test": { "description": "Include all modules that pass test assertion.", "oneOf": [ { "$ref": "#/definitions/Rules" } ] } }, "required": ["banner"] }, { "$ref": "#/definitions/BannerFunction" } ] }