W72crm_web-master/node_modules/webpack/schemas/plugins/DllPlugin.json

33 lines
850 B
JSON
Raw Normal View History

2025-05-27 11:25:53 +08:00
{
"additionalProperties": false,
"required": [
"path"
],
"properties": {
"context": {
"description": "Context of requests in the manifest file (defaults to the webpack context)",
"minLength": 1,
"type": "string"
},
"name": {
"description": "Name of the exposed dll function (external name, use value of 'output.library')",
"minLength": 1,
"type": "string"
},
"type": {
"description": "Type of the dll bundle (external type, use value of 'output.libraryTarget')",
"minLength": 1,
"type": "string"
},
"path": {
"description": "Absolute path to the manifest json file (output)",
"minLength": 1,
"type": "string"
},
"entryOnly": {
"description": "If true, only entry points will be exposed",
"type": "boolean"
}
}
}