Last change
on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
997 bytes
|
Line | |
---|
1 | /**
|
---|
2 | * @license
|
---|
3 | * Copyright Google LLC All Rights Reserved.
|
---|
4 | *
|
---|
5 | * Use of this source code is governed by an MIT-style license that can be
|
---|
6 | * found in the LICENSE file at https://angular.io/license
|
---|
7 | */
|
---|
8 | import { WebpackConfigOptions } from '../../utils/build-options';
|
---|
9 | export declare function getWebpackStatsConfig(verbose?: boolean): {
|
---|
10 | all: boolean;
|
---|
11 | colors: boolean;
|
---|
12 | hash: boolean;
|
---|
13 | timings: boolean;
|
---|
14 | chunks: boolean;
|
---|
15 | builtAt: boolean;
|
---|
16 | warnings: boolean;
|
---|
17 | errors: boolean;
|
---|
18 | assets: boolean;
|
---|
19 | cachedAssets: boolean;
|
---|
20 | ids: boolean;
|
---|
21 | entrypoints: boolean;
|
---|
22 | };
|
---|
23 | export declare function getStatsConfig(wco: WebpackConfigOptions): {
|
---|
24 | stats: {
|
---|
25 | all: boolean;
|
---|
26 | colors: boolean;
|
---|
27 | hash: boolean;
|
---|
28 | timings: boolean;
|
---|
29 | chunks: boolean;
|
---|
30 | builtAt: boolean;
|
---|
31 | warnings: boolean;
|
---|
32 | errors: boolean;
|
---|
33 | assets: boolean;
|
---|
34 | cachedAssets: boolean;
|
---|
35 | ids: boolean;
|
---|
36 | entrypoints: boolean;
|
---|
37 | };
|
---|
38 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.