This commit is contained in:
2022-07-18 02:50:52 +00:00
parent befd344ab0
commit 06181b34d6
8569 changed files with 818704 additions and 352705 deletions
+24
View File
@@ -612,6 +612,10 @@
"description": "Ignore minimum size, minimum chunks and maximum requests and always create chunks for this cache group",
"type": "boolean"
},
"enforceSizeThreshold": {
"description": "Size threshold at which splitting is enforced and other restrictions (maxAsyncRequests, maxInitialRequests) are ignored.",
"type": "number"
},
"filename": {
"description": "Sets the template for the filename for created chunks (Only works for initial chunks)",
"type": "string",
@@ -722,6 +726,10 @@
}
]
},
"enforceSizeThreshold": {
"description": "Size threshold at which splitting is enforced and other restrictions (maxAsyncRequests, maxInitialRequests) are ignored.",
"type": "number"
},
"fallbackCacheGroup": {
"description": "Options for modules not selected by any other cache group",
"type": "object",
@@ -1171,6 +1179,10 @@
"fileSystem": {
"description": "Filesystem for the resolver"
},
"ignoreRootsErrors": {
"description": "Enable to ignore fatal errors happening during resolving of 'resolve.roots'. Usually such errors should not happen, but this option is provided for backward-compatibility.",
"type": "boolean"
},
"mainFields": {
"description": "Field names from the description file (package.json) which are used to find the default entry point",
"anyOf": [
@@ -1218,9 +1230,21 @@
]
}
},
"preferAbsolute": {
"description": "Prefer to resolve server-relative URLs (starting with '/') as absolute paths before falling back to resolve in 'resolve.roots'.",
"type": "boolean"
},
"resolver": {
"description": "Custom resolver"
},
"roots": {
"description": "A list of directories in which requests that are server-relative URLs (starting with '/') are resolved.",
"type": "array",
"items": {
"description": "Directory in which requests that are server-relative URLs (starting with '/') are resolved.",
"type": "string"
}
},
"symlinks": {
"description": "Enable resolving symlinks to the original location",
"type": "boolean"