UNPKG

knip

Version:

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

13 lines (12 loc) 219 B
type JsPlugin = string | { name: string; specifier: string; }; type Override = { jsPlugins?: JsPlugin[]; }; export type OxlintConfig = { jsPlugins?: JsPlugin[]; overrides?: Override[]; }; export {};