1 | {
|
2 | "type": "object",
|
3 | "additionalProperties": false,
|
4 | "properties": {
|
5 | "minimizerOptions": {
|
6 | "description": "Options for `imageMinimizerOptions`.",
|
7 | "additionalProperties": true,
|
8 | "type": "object"
|
9 | },
|
10 | "filter": {
|
11 | "description": "Allows filtering of images for optimization.",
|
12 | "instanceof": "Function"
|
13 | },
|
14 | "severityError": {
|
15 | "description": "Allows to choose how errors are displayed.",
|
16 | "anyOf": [
|
17 | {
|
18 | "type": "boolean"
|
19 | },
|
20 | {
|
21 | "type": "string"
|
22 | }
|
23 | ]
|
24 | },
|
25 | "filename": {
|
26 | "type": "string"
|
27 | },
|
28 | "deleteOriginalAssets": {
|
29 | "type": "boolean"
|
30 | }
|
31 | }
|
32 | }
|