
This option makes ngc behave as tsc, and was originally implemented before ngtsc existed. It was designed so we could build JIT-only versions of Angular packages to begin testing Ivy early, and is not used at all in our current setup. PR Close #32219
25 lines
706 B
TypeScript
25 lines
706 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
import {MissingTranslationStrategy} from '../core';
|
|
|
|
export interface AotCompilerOptions {
|
|
locale?: string;
|
|
i18nFormat?: string;
|
|
i18nUseExternalIds?: boolean;
|
|
translations?: string;
|
|
missingTranslation?: MissingTranslationStrategy;
|
|
enableSummariesForJit?: boolean;
|
|
preserveWhitespaces?: boolean;
|
|
fullTemplateTypeCheck?: boolean;
|
|
allowEmptyCodegenFiles?: boolean;
|
|
strictInjectionParameters?: boolean;
|
|
enableIvy?: boolean|'ngtsc';
|
|
createExternalSymbolFactoryReexports?: boolean;
|
|
}
|