@@ -13,7 +13,6 @@ import { Configuration } from 'webpack';
13
13
import { DevServerBuilderOutput } from ' @angular/build' ;
14
14
import type http from ' node:http' ;
15
15
import { IndexHtmlTransform } from ' @angular/build/private' ;
16
- import { json } from ' @angular-devkit/core' ;
17
16
import { Observable } from ' rxjs' ;
18
17
import type { Plugin as Plugin_2 } from ' esbuild' ;
19
18
import webpack from ' webpack' ;
@@ -25,16 +24,16 @@ export { ApplicationBuilderOptions }
25
24
export type AssetPattern = AssetPatternObject | string ;
26
25
27
26
// @public (undocumented)
28
- export interface AssetPatternObject {
27
+ export type AssetPatternObject = {
29
28
followSymlinks? : boolean ;
30
29
glob: string ;
31
30
ignore? : string [];
32
31
input: string ;
33
32
output? : string ;
34
- }
33
+ };
35
34
36
35
// @public
37
- export interface BrowserBuilderOptions {
36
+ export type BrowserBuilderOptions = {
38
37
allowedCommonJsDependencies? : string [];
39
38
aot? : boolean ;
40
39
assets? : AssetPattern [];
@@ -75,7 +74,7 @@ export interface BrowserBuilderOptions {
75
74
verbose? : boolean ;
76
75
watch? : boolean ;
77
76
webWorkerTsConfig? : string ;
78
- }
77
+ };
79
78
80
79
// @public
81
80
export type BrowserBuilderOutput = BuilderOutput & {
@@ -89,7 +88,7 @@ export type BrowserBuilderOutput = BuilderOutput & {
89
88
};
90
89
91
90
// @public (undocumented)
92
- export interface Budget {
91
+ export type Budget = {
93
92
baseline? : string ;
94
93
error? : string ;
95
94
maximumError? : string ;
@@ -99,7 +98,7 @@ export interface Budget {
99
98
name? : string ;
100
99
type: Type ;
101
100
warning? : string ;
102
- }
101
+ };
103
102
104
103
export { buildApplication }
105
104
@@ -114,7 +113,7 @@ export enum CrossOrigin {
114
113
}
115
114
116
115
// @public
117
- export interface DevServerBuilderOptions {
116
+ export type DevServerBuilderOptions = {
118
117
allowedHosts? : string [];
119
118
buildTarget: string ;
120
119
disableHostCheck? : boolean ;
@@ -138,7 +137,7 @@ export interface DevServerBuilderOptions {
138
137
sslKey? : string ;
139
138
verbose? : boolean ;
140
139
watch? : boolean ;
141
- }
140
+ };
142
141
143
142
export { DevServerBuilderOutput }
144
143
@@ -189,28 +188,24 @@ export function executeSSRDevServerBuilder(options: SSRDevServerBuilderOptions,
189
188
export type ExecutionTransformer <T > = (input : T ) => T | Promise <T >;
190
189
191
190
// @public
192
- export interface ExtractI18nBuilderOptions {
191
+ export type ExtractI18nBuilderOptions = {
193
192
buildTarget? : string ;
194
193
format? : Format ;
195
194
outFile? : string ;
196
195
outputPath? : string ;
197
196
progress? : boolean ;
198
- }
197
+ };
199
198
200
199
// @public (undocumented)
201
- export interface FileReplacement {
202
- // (undocumented)
200
+ export type FileReplacement = {
203
201
replace? : string ;
204
- // (undocumented)
205
202
replaceWith? : string ;
206
- // (undocumented)
207
203
src? : string ;
208
- // (undocumented)
209
204
with? : string ;
210
- }
205
+ };
211
206
212
207
// @public
213
- export interface KarmaBuilderOptions {
208
+ export type KarmaBuilderOptions = {
214
209
assets? : AssetPattern_2 [];
215
210
browsers? : Browsers ;
216
211
builderMode? : BuilderMode ;
@@ -234,7 +229,7 @@ export interface KarmaBuilderOptions {
234
229
tsConfig: string ;
235
230
watch? : boolean ;
236
231
webWorkerTsConfig? : string ;
237
- }
232
+ };
238
233
239
234
// @public (undocumented)
240
235
export type KarmaConfigOptions = ConfigOptions & {
@@ -243,19 +238,19 @@ export type KarmaConfigOptions = ConfigOptions & {
243
238
};
244
239
245
240
// @public
246
- export interface NgPackagrBuilderOptions {
241
+ export type NgPackagrBuilderOptions = {
247
242
poll? : number ;
248
243
project: string ;
249
244
tsConfig? : string ;
250
245
watch? : boolean ;
251
- }
246
+ };
252
247
253
248
// @public (undocumented)
254
- export interface OptimizationObject {
249
+ export type OptimizationObject = {
255
250
fonts? : FontsUnion ;
256
251
scripts? : boolean ;
257
252
styles? : StylesUnion ;
258
- }
253
+ };
259
254
260
255
// @public
261
256
export type OptimizationUnion = boolean | OptimizationObject ;
@@ -273,7 +268,7 @@ export enum OutputHashing {
273
268
}
274
269
275
270
// @public
276
- export interface ProtractorBuilderOptions {
271
+ export type ProtractorBuilderOptions = {
277
272
baseUrl? : string ;
278
273
devServerTarget? : string ;
279
274
grep? : string ;
@@ -284,10 +279,10 @@ export interface ProtractorBuilderOptions {
284
279
specs? : string [];
285
280
suite? : string ;
286
281
webdriverUpdate? : boolean ;
287
- }
282
+ };
288
283
289
284
// @public (undocumented)
290
- export interface ServerBuilderOptions {
285
+ export type ServerBuilderOptions = {
291
286
assets? : AssetPattern_3 [];
292
287
buildOptimizer? : boolean ;
293
288
deleteOutputPath? : boolean ;
@@ -315,7 +310,7 @@ export interface ServerBuilderOptions {
315
310
vendorChunk? : boolean ;
316
311
verbose? : boolean ;
317
312
watch? : boolean ;
318
- }
313
+ };
319
314
320
315
// @public
321
316
export type ServerBuilderOutput = BuilderOutput & {
@@ -328,18 +323,18 @@ export type ServerBuilderOutput = BuilderOutput & {
328
323
};
329
324
330
325
// @public (undocumented)
331
- export interface SourceMapObject {
326
+ export type SourceMapObject = {
332
327
hidden? : boolean ;
333
328
scripts? : boolean ;
334
329
styles? : boolean ;
335
330
vendor? : boolean ;
336
- }
331
+ };
337
332
338
333
// @public
339
334
export type SourceMapUnion = boolean | SourceMapObject ;
340
335
341
336
// @public (undocumented)
342
- export type SSRDevServerBuilderOptions = Schema & json . JsonObject ;
337
+ export type SSRDevServerBuilderOptions = Schema ;
343
338
344
339
// @public (undocumented)
345
340
export type SSRDevServerBuilderOutput = BuilderOutput & {
@@ -348,9 +343,9 @@ export type SSRDevServerBuilderOutput = BuilderOutput & {
348
343
};
349
344
350
345
// @public
351
- export interface StylePreprocessorOptions {
346
+ export type StylePreprocessorOptions = {
352
347
includePaths? : string [];
353
- }
348
+ };
354
349
355
350
// @public
356
351
export enum Type {
0 commit comments