mirror of https://github.com/webpack/webpack.git
added some missing schema entries
This commit is contained in:
parent
a6a389c5c0
commit
63f24e1daf
|
@ -216,7 +216,14 @@
|
||||||
},
|
},
|
||||||
"devtoolFallbackModuleFilenameTemplate": {
|
"devtoolFallbackModuleFilenameTemplate": {
|
||||||
"description": "Similar to `output.devtoolModuleFilenameTemplate`, but used in the case of duplicate module identifiers.",
|
"description": "Similar to `output.devtoolModuleFilenameTemplate`, but used in the case of duplicate module identifiers.",
|
||||||
"type": "string"
|
"anyOf": [
|
||||||
|
{
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"instanceof": "Function"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"devtoolLineToLine": {
|
"devtoolLineToLine": {
|
||||||
"description": "Enable line to line mapped mode for all/specified modules. Line to line mapped mode uses a simple SourceMap where each line of the generated source is mapped to the same line of the original source. It’s a performance optimization. Only use it if your performance need to be better and you are sure that input lines match which generated lines.",
|
"description": "Enable line to line mapped mode for all/specified modules. Line to line mapped mode uses a simple SourceMap where each line of the generated source is mapped to the same line of the original source. It’s a performance optimization. Only use it if your performance need to be better and you are sure that input lines match which generated lines.",
|
||||||
|
@ -654,6 +661,13 @@
|
||||||
},
|
},
|
||||||
"node": {
|
"node": {
|
||||||
"description": "Include polyfills or mocks for various node stuff.",
|
"description": "Include polyfills or mocks for various node stuff.",
|
||||||
|
"additionalProperties": {
|
||||||
|
"enum": [
|
||||||
|
false,
|
||||||
|
true,
|
||||||
|
"mock"
|
||||||
|
]
|
||||||
|
},
|
||||||
"properties": {
|
"properties": {
|
||||||
"Buffer": {
|
"Buffer": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
|
|
Loading…
Reference in New Issue