UNPKG

knip

Version:

Find and fix unused dependencies, exports and files in your TypeScript and JavaScript projects

28 lines (27 loc) 750 B
export interface NxProjectConfiguration { targets?: { [targetName: string]: { command?: string; executor?: string; options?: { command?: string; commands?: Array<string | { command: string; }>; cwd?: string; eslintConfig?: string; jestConfig?: string; tsConfig?: string; vitestConfig?: string; webpackConfig?: string; }; }; }; } export interface NxConfigRoot { plugins?: Array<string | { plugin: string; }>; generators?: Record<string, unknown>; targetDefaults?: Record<string, unknown>; }