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

32 lines (28 loc) 813 B
import type { ComponentMetadata } from '../utils/app-components-info'; type FederationType = 'static' | 'dynamic'; export interface Schema { appName: string; mfType: 'host' | 'remote'; port?: number; remotes?: string[]; host?: string; federationType?: FederationType; routing?: boolean; skipFormat?: boolean; skipPackageJson?: boolean; e2eProjectName?: string; prefix?: string; standalone?: boolean; skipE2E?: boolean; typescriptConfiguration?: boolean; setParserOptionsProject?: boolean; } export interface NormalizedOptions extends Schema { federationType: FederationType; prefix: string | undefined; componentType: string; componentFileSuffix: string; entryModuleFileName: string; appComponentInfo: ComponentMetadata; nxWelcomeComponentInfo: ComponentMetadata; }