Navigation Menu

Skip to content

Commit

Permalink
feat: add JSON schema for "stats" property
Browse files Browse the repository at this point in the history
  • Loading branch information
gajus committed Sep 9, 2016
1 parent 5e27fb8 commit 3934066
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions schemas/webpackOptionsSchema.json
Expand Up @@ -467,6 +467,26 @@
"resolveLoader": {
"#ref": "#/definitions/resolveLoader"
},
"stats": {
"description": "Used by the webpack CLI program to pass stats options.",
"oneOf": [
{
"type": "object"
},
{
"type": "boolean"
},
{
"enum": [
"none",
"errors-only",
"minimal",
"normal",
"verbose"
]
}
]
},
"target": {
"enum": [
"web",
Expand Down

0 comments on commit 3934066

Please sign in to comment.