@jsverse/transloco
Version:
The internationalization (i18n) library for Angular
29 lines (28 loc) • 644 B
TypeScript
import { Schema } from '@schematics/angular/module/schema';
import { TranslationFileFormat } from '../types';
export interface SchemaOptions extends Schema {
/**
* The folder that contain the root translation files.
*/
translationPath: string;
/**
* The default language of the project.
*/
defaultLang: string;
/**
* Determine rather join also the default language
*/
includeDefaultLang: boolean;
/**
* The output directory.
*/
outDir: string;
/**
*
*/
format?: TranslationFileFormat;
/**
* The root project name.
*/
project: string;
}