@omlet/cli
Version:
Omlet (https://omlet.dev) is a component analytics tool that uses a CLI to scan your codebase to detect components and their usage. Get real usage insights from customizable charts to measure adoption across all projects and identify opportunities to impr
40 lines (39 loc) • 1.03 kB
TypeScript
declare type PackageManager = "yarn" | "pnpm" | "npm";
export interface NxJsonConfiguration {
extends?: string;
implicitDependencies?: unknown;
namedInputs?: unknown;
targetDefaults?: unknown;
affected?: unknown;
workspaceLayout?: {
libsDir?: string;
appsDir?: string;
};
tasksRunnerOptions?: {
[tasksRunnerName: string]: {
runner?: string;
options?: unknown;
};
};
generators?: {
[collectionName: string]: {
[generatorName: string]: unknown;
};
};
cli?: {
packageManager?: PackageManager;
defaultProjectName?: string;
};
plugins?: unknown;
pluginsConfig?: Record<string, Record<string, unknown>>;
defaultProject?: string;
installation?: unknown;
release?: unknown;
nxCloudAccessToken?: string;
nxCloudUrl?: string;
nxCloudEncryptionKey?: string;
parallel?: number;
cacheDirectory?: string;
useDaemonProcess?: boolean;
}
export {};