| 1234567891011121314151617181920212223242526272829303132 |
- {
- "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"
- }
- }
- }
|