source: trip-planner-front/node_modules/webpack/schemas/plugins/DllPlugin.json@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.0 KB
Line 
1{
2 "title": "DllPluginOptions",
3 "type": "object",
4 "additionalProperties": false,
5 "properties": {
6 "context": {
7 "description": "Context of requests in the manifest file (defaults to the webpack context).",
8 "type": "string",
9 "minLength": 1
10 },
11 "entryOnly": {
12 "description": "If true, only entry points will be exposed (default: true).",
13 "type": "boolean"
14 },
15 "format": {
16 "description": "If true, manifest json file (output) will be formatted.",
17 "type": "boolean"
18 },
19 "name": {
20 "description": "Name of the exposed dll function (external name, use value of 'output.library').",
21 "type": "string",
22 "minLength": 1
23 },
24 "path": {
25 "description": "Absolute path to the manifest json file (output).",
26 "type": "string",
27 "minLength": 1
28 },
29 "type": {
30 "description": "Type of the dll bundle (external type, use value of 'output.libraryTarget').",
31 "type": "string",
32 "minLength": 1
33 }
34 },
35 "required": ["path"]
36}
Note: See TracBrowser for help on using the repository browser.