mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-19 20:52:06 +08:00
Followup to #6881 Allow controlling chunk naming via the `--named-chunks` flag, which can be set on `.angular-cli.json` as well. Defaults to true in development, false in production.
28 lines
622 B
TypeScript
28 lines
622 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;
|
|
buildOptimizer?: boolean;
|
|
namedChunks?: boolean;
|
|
}
|