mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-18 03:23:57 +08:00
This is useful when you don't want the server to rebuild in the middle of something. A good example is when running e2e tests. Especially on larger suites, one would prefer to continue working while the build is tested without compromising tests. This will break tests on #4744. They should be adjusted to add the `--watch` flag since they depend on the live reload behaviour during `ng e2e`.
20 lines
400 B
TypeScript
20 lines
400 B
TypeScript
export interface BuildOptions {
|
|
target?: string;
|
|
environment?: string;
|
|
outputPath?: string;
|
|
aot?: boolean;
|
|
sourcemap?: boolean;
|
|
vendorChunk?: boolean;
|
|
baseHref?: string;
|
|
deployUrl?: string;
|
|
verbose?: boolean;
|
|
progress?: boolean;
|
|
i18nFile?: string;
|
|
i18nFormat?: string;
|
|
locale?: string;
|
|
extractCss?: boolean;
|
|
watch?: boolean;
|
|
outputHashing?: string;
|
|
poll?: number;
|
|
}
|