123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- {
- "additionalProperties": false,
- "definitions": {
- "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"
- }
- ]
- }
- },
- "properties": {
- "test": {
- "description": "Include all assets that pass test assertion.",
- "oneOf": [
- {
- "$ref": "#/definitions/Rules"
- }
- ]
- },
- "include": {
- "description": "Include all assets matching any of these conditions.",
- "oneOf": [
- {
- "$ref": "#/definitions/Rules"
- }
- ]
- },
- "exclude": {
- "description": "Exclude all assets matching any of these conditions.",
- "oneOf": [
- {
- "$ref": "#/definitions/Rules"
- }
- ]
- },
- "algorithm": {
- "description": "The compression algorithm/function.",
- "anyOf": [
- {
- "type": "string"
- },
- {
- "instanceof": "Function"
- }
- ]
- },
- "compressionOptions": {
- "description": "Compression options for `algorithm`.",
- "additionalProperties": true,
- "type": "object"
- },
- "threshold": {
- "description": "Only assets bigger than this size are processed. In bytes.",
- "type": "number"
- },
- "minRatio": {
- "description": "Only assets that compress better than this ratio are processed (`minRatio = Compressed Size / Original Size`).",
- "type": "number"
- },
- "deleteOriginalAssets": {
- "description": "Whether to delete the original assets or not.",
- "type": "boolean"
- },
- "filename": {
- "description": "The target asset filename.",
- "anyOf": [
- {
- "type": "string"
- },
- {
- "instanceof": "Function"
- }
- ]
- },
- "cache": {
- "description": "Enable file caching. Ignored in webpack 5, for webpack 5 please use https://webpack.js.org/configuration/other-options/#cache.",
- "anyOf": [
- {
- "type": "boolean"
- },
- {
- "type": "string"
- }
- ]
- }
- },
- "type": "object"
- }
|