@nx/webpack
Version:
10 lines (9 loc) • 383 B
TypeScript
import { ProjectConfiguration, Tree } from '@nx/devkit';
/**
* Validates the project to ensure it can be migrated
*
* @param tree The virtaul file system
* @param project the project configuration object for the project
* @returns A string if there is an error, otherwise undefined
*/
export declare function validateProject(tree: Tree, project: ProjectConfiguration): string;