npm install explore-config
exploreConfig(name: string, options: ExploreConfigOptions)
import exploreConfig from 'explore-config'
/**
* 1. explore -> techor.config.js
* 2. explore -> techor.config.ts
* 3. explore -> techor.config.cjs
* 4. explore -> techor.config.cts
* 5. explore -> techor.config.mjs
* 6. explore -> techor.config.mts
* */
const config = exploreConfig('techor.config')
console.log(config)
// -> {...}
export interface ExploreConfigOptions {
extensions?: ('js' | 'ts' | 'cjs' | 'cts' | 'mjs' | 'mts')[]
resolvedKeys?: string[]
cwd?: string
found?: (basename: string, configPath: string) => void
}