diff options
Diffstat (limited to 'node_modules/webpack/schemas')
-rw-r--r-- | node_modules/webpack/schemas/webpackOptionsSchema.json | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/node_modules/webpack/schemas/webpackOptionsSchema.json b/node_modules/webpack/schemas/webpackOptionsSchema.json index 791d37d75..19ace1f99 100644 --- a/node_modules/webpack/schemas/webpackOptionsSchema.json +++ b/node_modules/webpack/schemas/webpackOptionsSchema.json @@ -270,6 +270,10 @@ "use-credentials"
]
},
+ "chunkLoadTimeout": {
+ "description": "Number of milliseconds before chunk request expires",
+ "type": "number"
+ },
"devtoolFallbackModuleFilenameTemplate": {
"description": "Similar to `output.devtoolModuleFilenameTemplate`, but used in the case of duplicate module identifiers.",
"anyOf": [
@@ -333,6 +337,10 @@ "minLength": 1,
"type": "string"
},
+ "hashSalt": {
+ "minLength": 1,
+ "type": "string"
+ },
"hotUpdateChunkFilename": {
"description": "The filename of the Hot Update Chunks. They are inside the output.path directory.",
"type": "string",
@@ -989,6 +997,10 @@ "type": "string",
"description": "sort the modules by that field"
},
+ "moduleTrace": {
+ "type": "boolean",
+ "description": "add dependencies and origin of warnings/errors"
+ },
"chunksSort": {
"type": "string",
"description": "sort the chunks by that field"
|