@nx/workspace
Version:
14 lines (12 loc) • 309 B
TypeScript
export interface Schema {
projectName: string;
destination: string;
importPath?: string;
updateImportPath: boolean;
skipFormat?: boolean;
newProjectName?: string;
}
export interface NormalizedSchema extends Schema {
relativeToRootDestination: string;
isNxConfiguredInPackageJson?: boolean;
}