source: trip-planner-front/node_modules/webpack/schemas/_container.json@ 8d391a1

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

initial commit

  • Property mode set to 100644
File size: 4.7 KB
Line 
1{
2 "definitions": {
3 "Exposes": {
4 "description": "Modules that should be exposed by this container. When provided, property name is used as public name, otherwise public name is automatically inferred from request.",
5 "anyOf": [
6 {
7 "type": "array",
8 "items": {
9 "description": "Modules that should be exposed by this container.",
10 "anyOf": [
11 {
12 "$ref": "#/definitions/ExposesItem"
13 },
14 {
15 "$ref": "#/definitions/ExposesObject"
16 }
17 ]
18 }
19 },
20 {
21 "$ref": "#/definitions/ExposesObject"
22 }
23 ]
24 },
25 "ExposesConfig": {
26 "description": "Advanced configuration for modules that should be exposed by this container.",
27 "type": "object",
28 "additionalProperties": false,
29 "properties": {
30 "import": {
31 "description": "Request to a module that should be exposed by this container.",
32 "anyOf": [
33 {
34 "$ref": "#/definitions/ExposesItem"
35 },
36 {
37 "$ref": "#/definitions/ExposesItems"
38 }
39 ]
40 },
41 "name": {
42 "description": "Custom chunk name for the exposed module.",
43 "type": "string"
44 }
45 },
46 "required": ["import"]
47 },
48 "ExposesItem": {
49 "description": "Module that should be exposed by this container.",
50 "type": "string",
51 "minLength": 1
52 },
53 "ExposesItems": {
54 "description": "Modules that should be exposed by this container.",
55 "type": "array",
56 "items": {
57 "$ref": "#/definitions/ExposesItem"
58 }
59 },
60 "ExposesObject": {
61 "description": "Modules that should be exposed by this container. Property names are used as public paths.",
62 "type": "object",
63 "additionalProperties": {
64 "description": "Modules that should be exposed by this container.",
65 "anyOf": [
66 {
67 "$ref": "#/definitions/ExposesConfig"
68 },
69 {
70 "$ref": "#/definitions/ExposesItem"
71 },
72 {
73 "$ref": "#/definitions/ExposesItems"
74 }
75 ]
76 }
77 },
78 "Remotes": {
79 "description": "Container locations and request scopes from which modules should be resolved and loaded at runtime. When provided, property name is used as request scope, otherwise request scope is automatically inferred from container location.",
80 "anyOf": [
81 {
82 "type": "array",
83 "items": {
84 "description": "Container locations and request scopes from which modules should be resolved and loaded at runtime.",
85 "anyOf": [
86 {
87 "$ref": "#/definitions/RemotesItem"
88 },
89 {
90 "$ref": "#/definitions/RemotesObject"
91 }
92 ]
93 }
94 },
95 {
96 "$ref": "#/definitions/RemotesObject"
97 }
98 ]
99 },
100 "RemotesConfig": {
101 "description": "Advanced configuration for container locations from which modules should be resolved and loaded at runtime.",
102 "type": "object",
103 "additionalProperties": false,
104 "properties": {
105 "external": {
106 "description": "Container locations from which modules should be resolved and loaded at runtime.",
107 "anyOf": [
108 {
109 "$ref": "#/definitions/RemotesItem"
110 },
111 {
112 "$ref": "#/definitions/RemotesItems"
113 }
114 ]
115 },
116 "shareScope": {
117 "description": "The name of the share scope shared with this remote.",
118 "type": "string",
119 "minLength": 1
120 }
121 },
122 "required": ["external"]
123 },
124 "RemotesItem": {
125 "description": "Container location from which modules should be resolved and loaded at runtime.",
126 "type": "string",
127 "minLength": 1
128 },
129 "RemotesItems": {
130 "description": "Container locations from which modules should be resolved and loaded at runtime.",
131 "type": "array",
132 "items": {
133 "$ref": "#/definitions/RemotesItem"
134 }
135 },
136 "RemotesObject": {
137 "description": "Container locations from which modules should be resolved and loaded at runtime. Property names are used as request scopes.",
138 "type": "object",
139 "additionalProperties": {
140 "description": "Container locations from which modules should be resolved and loaded at runtime.",
141 "anyOf": [
142 {
143 "$ref": "#/definitions/RemotesConfig"
144 },
145 {
146 "$ref": "#/definitions/RemotesItem"
147 },
148 {
149 "$ref": "#/definitions/RemotesItems"
150 }
151 ]
152 }
153 }
154 }
155}
Note: See TracBrowser for help on using the repository browser.