Skip to content

Commit

Permalink
add missing stats keys
Browse files Browse the repository at this point in the history
fixes #5839
  • Loading branch information
sokra committed Oct 17, 2017
1 parent 1dc5618 commit c4bb0f4
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions schemas/webpackOptionsSchema.json
Expand Up @@ -994,6 +994,14 @@
"type": "boolean",
"description": "add timing information"
},
"performance": {
"type": "boolean",
"description": "add performance hint flags"
},
"depth": {
"type": "boolean",
"description": "add module depth in module graph"
},
"assets": {
"type": "boolean",
"description": "add assets information"
Expand Down Expand Up @@ -1070,6 +1078,14 @@
"type": "boolean",
"description": "add the source code of modules"
},
"warnings": {
"type": "boolean",
"description": "add warnings"
},
"errors": {
"type": "boolean",
"description": "add errors"
},
"warningsFilter": {
"description": "Suppress warnings that match the specified filters. Filters can be Strings, RegExps or Functions",
"$ref": "#/definitions/filter-types"
Expand Down

0 comments on commit c4bb0f4

Please sign in to comment.