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

33 lines (31 loc) 713 B
interface Schema { buildTarget: string; port?: number; host?: string; proxyConfig?: string; ssl?: boolean; sslKey?: string; sslCert?: string; headers?: Record<string, string>; open?: boolean; verbose?: boolean; liveReload?: boolean; publicHost?: string; allowedHosts?: string[]; servePath?: string; disableHostCheck?: boolean; hmr?: boolean; watch?: boolean; poll?: number; forceEsbuild?: boolean; inspect?: boolean | string; prebundle?: boolean | { exclude: string[] }; buildLibsFromSource?: boolean; esbuildMiddleware?: string[]; watchDependencies?: boolean; } export type NormalizedSchema = Schema & { liveReload: boolean; open: boolean; ssl: boolean; };