export interface NxProjectConfiguration { targets?: { [targetName: string]: { command?: string; executor?: string; options?: { command?: string; commands?: Array; cwd?: string; eslintConfig?: string; jestConfig?: string; tsConfig?: string; vitestConfig?: string; webpackConfig?: string; }; }; }; } export interface NxConfigRoot { plugins?: Array; generators?: Record; targetDefaults?: Record; }