Skip to content

Commit

Permalink
fix: devtool can have value false
Browse files Browse the repository at this point in the history
  • Loading branch information
gajus committed Sep 9, 2016
1 parent 4faaa69 commit ad95343
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion schemas/webpackOptionsSchema.json
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,14 @@
},
"devtool": {
"description": "A developer tool to enhance debugging.",
"type": "string"
"oneOf": [
{
"type": "string"
},
{
"constant": false
}
]
},
"entry": {
"#ref": "#/definitions/entry"
Expand Down

0 comments on commit ad95343

Please sign in to comment.