forked from angular/angular-cli
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconstants.ts
More file actions
44 lines (41 loc) · 758 Bytes
/
constants.ts
File metadata and controls
44 lines (41 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
export const SUPPORTED_REPORTERS = new Set([
'default',
'verbose',
'dots',
'json',
'junit',
'tap',
'tap-flat',
'html',
]);
export const SUPPORTED_COVERAGE_REPORTERS = new Set([
'html',
'lcov',
'lcovonly',
'text',
'text-summary',
'cobertura',
'json',
'json-summary',
]);
export const BUILD_OPTIONS_KEYS = [
'assets',
'styles',
'scripts',
'polyfills',
'inlineStyleLanguage',
'stylePreprocessorOptions',
'externalDependencies',
'loader',
'define',
'fileReplacements',
'webWorkerTsConfig',
'aot',
];