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

15 lines 502 B
import type { Tree } from '@nx/devkit'; export interface AppConfig { appName: string; appModule: string; } export interface LibConfig { name: string; module: string; barrel: string; } export declare function getAppConfig(): AppConfig; export declare function getLibConfig(): LibConfig; export declare function createApp(tree: Tree, appName: string, routing?: boolean): void; export declare function createLib(tree: Tree, libName: string): void; //# sourceMappingURL=testing.d.ts.map