@storm-software/build-tools
Version:
A comprehensive set of tools for building and managing projects within a Storm workspace. Includes builders such as rollup, rolldown, tsup, and unbuild, along with various utilities.
12 lines (9 loc) • 356 B
text/typescript
import { NxJsonConfiguration } from '@nx/devkit';
/**
* Read the `nx.json` configuration file in the workspace root.
*
* @param workspaceRoot - The workspace root directory.
* @returns The `nx.json` configuration file.
*/
declare const readNxConfig: (workspaceRoot?: string) => Promise<NxJsonConfiguration<string[] | "*">>;
export { readNxConfig };