@rxdi/schematics
Version:
25 lines (23 loc) • 391 B
TypeScript
import { Path } from '@angular-devkit/core';
export interface LibraryOptions {
/**
* Nest library name.
*/
name: string;
/**
* Prefix (scope)
*/
prefix?: string;
/**
* Application language.
*/
language?: string;
/**
* The path to create the library.
*/
path?: string | Path;
/**
* The libraries root directory
*/
rootDir?: string | Path;
}