Files
Speedtest-Tracker/conf/site/node_modules/webpack/schemas/plugins/LoaderOptionsPlugin.json
Henry Whitaker ea5808047f Tweaked gitignore
gitignore removed all composer and npm files, so automated builds would fail
2020-04-12 21:24:03 +01:00

28 lines
773 B
JSON

{
"title": "LoaderOptionsPluginOptions",
"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",
"additionalProperties": true,
"properties": {
"context": {
"description": "The context that can be used to configure older loaders",
"type": "string",
"absolutePath": true
}
}
}
}
}