UNPKG

777 BJSONView Raw
1{
2 "title": "LoaderOptionsPluginOptions",
3 "type": "object",
4 "additionalProperties": true,
5 "properties": {
6 "debug": {
7 "description": "Whether loaders should be in debug mode or not. debug will be removed as of webpack 3.",
8 "type": "boolean"
9 },
10 "minimize": {
11 "description": "Where loaders can be switched to minimize mode.",
12 "type": "boolean"
13 },
14 "options": {
15 "description": "A configuration object that can be used to configure older loaders.",
16 "type": "object",
17 "additionalProperties": true,
18 "properties": {
19 "context": {
20 "description": "The context that can be used to configure older loaders.",
21 "type": "string",
22 "absolutePath": true
23 }
24 }
25 }
26 }
27}