UNPKG

html-loader

Version:
72 lines (71 loc) 1.49 kB
{ "title": "HTML Loader options", "type": "object", "definitions": { "Source": { "anyOf": [ { "type": "object", "properties": { "tag": { "type": "string", "minLength": 1 }, "attribute": { "type": "string", "minLength": 1 }, "type": { "enum": ["src", "srcset"] }, "filter": { "instanceof": "Function" } }, "required": ["attribute", "type"], "additionalProperties": false }, { "enum": ["..."] } ] }, "SourcesList": { "type": "array", "items": { "$ref": "#/definitions/Source" }, "minItems": 1, "uniqueItems": true } }, "properties": { "preprocessor": { "instanceof": "Function" }, "sources": { "anyOf": [ { "type": "boolean" }, { "type": "object", "properties": { "list": { "$ref": "#/definitions/SourcesList" }, "urlFilter": { "instanceof": "Function" } }, "additionalProperties": false } ] }, "minimize": { "anyOf": [{ "type": "boolean" }, { "type": "object" }] }, "esModule": { "type": "boolean" } }, "additionalProperties": false }