UNPKG

@nrwl/workspace

Version:

The Workspace plugin contains executors and generators that are useful for any Nx workspace. It should be present in every Nx workspace and other plugins build on it.

9 lines (8 loc) 391 B
import type { Tree } from '@angular-devkit/schematics'; export declare enum ProjectType { Application = "application", Library = "library" } export declare function projectRootDir(projectType: ProjectType): "libs" | "apps"; export declare function projectDir(projectType: ProjectType): "app" | "lib"; export declare function projectRootPath(tree: Tree, projectName: string): string;