mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-23 07:19:58 +08:00
- Add a "--no-common-chunk" build option for disabling the common async chunk. - The existing behavior is maintained by default. closes #7021
26 lines
569 B
TypeScript
26 lines
569 B
TypeScript
export interface BuildOptions {
|
|
target?: string;
|
|
environment?: string;
|
|
outputPath?: string;
|
|
aot?: boolean;
|
|
sourcemaps?: boolean;
|
|
vendorChunk?: boolean;
|
|
commonChunk?: boolean;
|
|
baseHref?: string;
|
|
deployUrl?: string;
|
|
verbose?: boolean;
|
|
progress?: boolean;
|
|
i18nFile?: string;
|
|
i18nFormat?: string;
|
|
locale?: string;
|
|
extractCss?: boolean;
|
|
watch?: boolean;
|
|
outputHashing?: string;
|
|
poll?: number;
|
|
app?: string;
|
|
deleteOutputPath?: boolean;
|
|
preserveSymlinks?: boolean;
|
|
extractLicenses?: boolean;
|
|
showCircularDependencies?: boolean;
|
|
}
|