UNPKG

knip

Version:

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

15 lines (14 loc) 270 B
export type PluginConfig = { build?: { esbuild?: unknown; }; custom?: { esbuild?: unknown; }; functions?: Record<string, ServerlessFunction>; plugins?: unknown[]; }; type ServerlessFunction = { handler?: string; }; export {};