sda
Version:
Software development assistant
7 lines (6 loc) • 319 B
TypeScript
import { IConfig } from '../interfaces/IConfig';
/**
* Replaces all relative paths in a config file with absolute paths.
* This includes environment paths and file paths directories.
*/
export default function replaceConfigWithAbsolutePaths(config: Partial<IConfig>, configFilePath: string): Partial<IConfig>;