File tree 2 files changed +436
-0
lines changed
packages/angular_devkit/build_angular/src/builders/server
2 files changed +436
-0
lines changed Original file line number Diff line number Diff line change 4
4
"title" : " Universal Target" ,
5
5
"type" : " object" ,
6
6
"properties" : {
7
+ "assets" : {
8
+ "type" : " array" ,
9
+ "description" : " List of static application assets." ,
10
+ "default" : [],
11
+ "items" : {
12
+ "$ref" : " #/definitions/assetPattern"
13
+ }
14
+ },
7
15
"main" : {
8
16
"type" : " string" ,
9
17
"description" : " The name of the main entry-point file."
207
215
"additionalProperties" : false ,
208
216
"required" : [" outputPath" , " main" , " tsConfig" ],
209
217
"definitions" : {
218
+ "assetPattern" : {
219
+ "oneOf" : [
220
+ {
221
+ "type" : " object" ,
222
+ "properties" : {
223
+ "followSymlinks" : {
224
+ "type" : " boolean" ,
225
+ "default" : false ,
226
+ "description" : " Allow glob patterns to follow symlink directories. This allows subdirectories of the symlink to be searched."
227
+ },
228
+ "glob" : {
229
+ "type" : " string" ,
230
+ "description" : " The pattern to match."
231
+ },
232
+ "input" : {
233
+ "type" : " string" ,
234
+ "description" : " The input directory path in which to apply 'glob'. Defaults to the project root."
235
+ },
236
+ "ignore" : {
237
+ "description" : " An array of globs to ignore." ,
238
+ "type" : " array" ,
239
+ "items" : {
240
+ "type" : " string"
241
+ }
242
+ },
243
+ "output" : {
244
+ "type" : " string" ,
245
+ "description" : " Absolute path within the output."
246
+ }
247
+ },
248
+ "additionalProperties" : false ,
249
+ "required" : [" glob" , " input" , " output" ]
250
+ },
251
+ {
252
+ "type" : " string"
253
+ }
254
+ ]
255
+ },
210
256
"fileReplacement" : {
211
257
"oneOf" : [
212
258
{
You can’t perform that action at this time.
0 commit comments