diff --git a/packages/compiler-cli/ngcc/src/packages/configuration.ts b/packages/compiler-cli/ngcc/src/packages/configuration.ts index 092ac5db69..e79b5fd6d4 100644 --- a/packages/compiler-cli/ngcc/src/packages/configuration.ts +++ b/packages/compiler-cli/ngcc/src/packages/configuration.ts @@ -33,7 +33,7 @@ export interface NgccProjectConfig { export interface ProcessLockingConfiguration { /** * The number of times the AsyncLocker will attempt to lock the process before failing. - * Defaults to 50. + * Defaults to 500. */ retryAttempts?: number; /** @@ -148,7 +148,7 @@ export const DEFAULT_NGCC_CONFIG: NgccProjectConfig = { }, locking: { retryDelay: 500, - retryAttempts: 50, + retryAttempts: 500, } };