UNPKG

knip

Version:

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

27 lines (26 loc) 720 B
export interface NxProjectConfiguration { targets?: { [targetName: string]: { command?: string; executor?: string; options?: { command?: string; commands?: Array<string | { command: 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>; }