2016-11-15 13:57:25 -08:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
|
2017-08-16 09:00:03 -07:00
|
|
|
import {MissingTranslationStrategy} from '../core';
|
2017-04-13 09:17:37 +02:00
|
|
|
|
2016-11-15 13:57:25 -08:00
|
|
|
export interface AotCompilerOptions {
|
|
|
|
locale?: string;
|
|
|
|
i18nFormat?: string;
|
|
|
|
translations?: string;
|
2017-04-13 09:17:37 +02:00
|
|
|
missingTranslation?: MissingTranslationStrategy;
|
2017-01-10 19:07:03 -08:00
|
|
|
enableLegacyTemplate?: boolean;
|
2017-07-27 16:13:16 -07:00
|
|
|
enableSummariesForJit?: boolean;
|
2017-07-28 15:58:28 +02:00
|
|
|
preserveWhitespaces?: boolean;
|
2017-09-11 15:18:19 -07:00
|
|
|
fullTemplateTypeCheck?: boolean;
|
2016-11-15 13:57:25 -08:00
|
|
|
}
|