mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-18 20:02:40 +08:00
36 lines
860 B
TypeScript
36 lines
860 B
TypeScript
export interface BuildOptions {
|
|
target?: string;
|
|
environment?: string;
|
|
outputPath?: string;
|
|
aot?: boolean;
|
|
sourcemaps?: boolean;
|
|
evalSourcemaps?: boolean;
|
|
vendorChunk?: boolean;
|
|
commonChunk?: boolean;
|
|
baseHref?: string;
|
|
deployUrl?: string;
|
|
verbose?: boolean;
|
|
progress?: boolean;
|
|
i18nFile?: string;
|
|
i18nFormat?: string;
|
|
i18nOutFile?: string;
|
|
i18nOutFormat?: string;
|
|
locale?: string;
|
|
missingTranslation?: string;
|
|
extractCss?: boolean;
|
|
bundleDependencies?: 'none' | 'all';
|
|
watch?: boolean;
|
|
outputHashing?: string;
|
|
poll?: number;
|
|
app?: string;
|
|
deleteOutputPath?: boolean;
|
|
preserveSymlinks?: boolean;
|
|
extractLicenses?: boolean;
|
|
showCircularDependencies?: boolean;
|
|
buildOptimizer?: boolean;
|
|
namedChunks?: boolean;
|
|
subresourceIntegrity?: boolean;
|
|
forceTsCommonjs?: boolean;
|
|
serviceWorker?: boolean;
|
|
}
|