sda
Version:
Software development assistant
12 lines (11 loc) • 543 B
TypeScript
/// <reference path="../../typings/yeoman-environment-resolver.d.ts" />
/**
* Find all configuration files. Includes current folder upwards, npm packages with configs and the home folder file.
* @param rootDir - Current directory.
*/
export declare function getAllConfigPaths(rootDir: string, argsConfigPath?: string): string[];
/**
* Find all configuration files from the input folder path up to the root folder.
* @param dir - Directory to start browsing up
*/
export declare function getConfigPaths(dir: string): string[];