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

18 lines (15 loc) 434 B
import { ProjectConfiguration } from '@nx/devkit'; export interface GeneratorOptions { library: string; name: string; skipModule?: boolean; skipFormat?: boolean; } export interface NormalizedGeneratorOptions extends GeneratorOptions { entryPointDestination: string; libraryProject: ProjectConfiguration; mainEntryPoint: string; secondaryEntryPoint: string; skipModule: boolean; moduleTypeSeparator: '-' | '.'; }