export interface NxProjectConfiguration { targets?: { [targetName: string]: { command?: string; executor?: string; options?: { command?: string; commands?: string[]; }; }; }; } export interface NxConfigRoot { plugins?: Array; generators?: Record; targetDefaults?: Record; }