UNPKG

explore-config

Version:

Explore multi-format JavaScript module configuration

8 lines (7 loc) 305 B
export interface ExploreConfigOptions { extensions?: ('js' | 'ts' | 'cjs' | 'cts' | 'mjs' | 'mts')[]; resolvedKeys?: string[]; cwd?: string; found?: (basename: string, configPath: string) => void; } export default function exploreConfig(name: string, options?: ExploreConfigOptions): any;