@stryke/fs
Version:
A package containing various file system utilities that expand the functionality of NodeJs's built-in `fs` module.
13 lines (12 loc) • 459 B
text/typescript
import { TsConfigJson } from "@stryke/types/tsconfig";
//#region src/tsconfig.d.ts
/**
* Loads a tsconfig.json file and returns the parsed JSON object.
*
* @param filePath - The directory to start searching for the tsconfig.json file.
* @returns The parsed tsconfig.json object or null if not found.
*/
declare function loadTsConfig(filePath?: string): Promise<TsConfigJson>;
//#endregion
export { loadTsConfig };
//# sourceMappingURL=tsconfig.d.cts.map