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 1.3 kB
import type { Tree } from '@nx/devkit'; import type { ProjectMigrator } from '../migrators'; import type { GeneratorOptions } from '../schema'; import type { WorkspaceRootFileTypesInfo } from './types'; export declare function validateWorkspace(tree: Tree): void; export declare function createNxJson(tree: Tree, options: GeneratorOptions, defaultProject: string | undefined): void; export declare function updateWorkspaceConfigDefaults(tree: Tree): void; export declare function updateRootTsConfig(tree: Tree): void; export declare function updatePackageJson(tree: Tree): void; export declare function updateRootEsLintConfig(tree: Tree, existingEsLintConfig: any | undefined, unitTestRunner?: string): Promise<void>; export declare function cleanupEsLintPackages(tree: Tree): void; export declare function createWorkspaceFiles(tree: Tree): Promise<void>; export declare function createRootKarmaConfig(tree: Tree): void; export declare function getWorkspaceRootFileTypesInfo(tree: Tree, migrators: ProjectMigrator[]): WorkspaceRootFileTypesInfo; export declare function updateVsCodeRecommendedExtensions(tree: Tree): void; export declare function deleteAngularJson(tree: Tree): void; export declare function deleteGitKeepFilesIfNotNeeded(tree: Tree): void; //# sourceMappingURL=workspace.d.ts.map