fuse-box
Version:
Fuse-Box a bundler that does it right
12 lines (11 loc) • 511 B
TypeScript
import { IRawTypescriptConfig } from './interfaces';
/**
* Recursively loads the tsconfigs extended, and returns the resulting settings
* merged sequentially.
*
* Does not mutate the original rawTsConfig.
*
* @param rawTsConfig The tsConfig result to load extended tsconfigs from.
* @param tsConfigDirectory The directory containing 'rawTsConfig'.
*/
export declare const getExtendedTsConfig: (rawTsConfig: IRawTypescriptConfig, tsConfigDirectory: string) => [IRawTypescriptConfig, string] | undefined;