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

6 lines 402 B
import type { SourceFile } from 'typescript'; export type IsHostRemoteConfigResult = 'host' | 'remote' | 'both' | false; export declare function isHostRemoteConfig(ast: SourceFile): IsHostRemoteConfigResult; export declare function getRemotesFromHost(ast: SourceFile): any[]; export declare function getExposedModulesFromRemote(ast: SourceFile): any; //# sourceMappingURL=is-host-remote-config.d.ts.map