UNPKG

@nx/angular

Version:

The Nx Plugin for Angular contains executors, generators, and utilities for managing Angular applications and libraries within an Nx workspace. It provides: - Integration with libraries such as Storybook, Jest, ESLint, Tailwind CSS, Playwright and Cypre

22 lines (20 loc) 412 B
export interface Schema { path: string; name?: string; prefix?: string; skipTests?: boolean; skipImport?: boolean; selector?: string; standalone?: boolean; module?: string; export?: boolean; type?: string; skipFormat?: boolean; } export interface NormalizedSchema extends Schema { directory: string; filePath: string; fileName: string; symbolName: string; projectName: string; }