webpack/schemas/plugins/LoaderOptionsPlugin.json

28 lines
773 B
JSON
Raw Normal View History

2017-10-28 05:23:38 +08:00
{
2018-09-21 18:11:12 +08:00
"title": "LoaderOptionsPluginOptions",
2017-11-19 18:45:15 +08:00
"type": "object",
"additionalProperties": true,
"properties": {
"debug": {
"description": "Whether loaders should be in debug mode or not. debug will be removed as of webpack 3",
"type": "boolean"
},
"minimize": {
"description": "Where loaders can be switched to minimize mode",
"type": "boolean"
},
"options": {
"description": "A configuration object that can be used to configure older loaders",
"type": "object",
2017-11-19 20:31:33 +08:00
"additionalProperties": true,
2017-11-19 18:45:15 +08:00
"properties": {
"context": {
2017-11-19 20:31:33 +08:00
"description": "The context that can be used to configure older loaders",
2017-11-20 17:17:34 +08:00
"type": "string",
"absolutePath": true
2017-11-19 18:45:15 +08:00
}
}
}
}
2017-10-28 05:23:38 +08:00
}