@verdaccio/config
Version:
Verdaccio Configuration
12 lines (11 loc) • 344 B
TypeScript
export type SetupDirectory = {
path: string;
type: 'xdg' | 'win' | 'win32' | 'def' | 'old';
};
/**
* Find and get the first config file that match.
* @return {String} the config file path
*/
declare function findConfigFile(configPath?: string): string;
export declare function readDefaultConfig(): string;
export { findConfigFile };