libs/nx/src/executors/extract-i18n/schema.ts
Omit
Properties |
|
| destinationFile (Optional) | |
| Type |
string
|
|
Description
|
Merge destination file - alternative to configured translation files |
| merge (Optional) | |
| Type |
boolean
|
| Default value |
false
|
|
Description
|
Enable merging with existing translation files |
| noMatchFuzzy (Optional) | |
| Type |
boolean
|
|
Description
|
Prevent fuzzy matching of similar units with changed id |
import { ExtractI18nBuilderOptions } from '@angular-devkit/build-angular';
export interface ExtractI18nExecutorSchema
extends Omit<ExtractI18nBuilderOptions, 'progress' | 'i18nDuplicateTranslation'> {
/**
* Enable merging with existing translation files
* @default false
*/
merge?: boolean;
/**
* Merge destination file - alternative to configured translation files
*/
destinationFile?: string;
/**
* Prevent fuzzy matching of similar units with changed id
*/
noMatchFuzzy?: boolean;
}