UNPKG

tsc-alias

Version:

Replace alias paths with relative paths after typescript compilation.

6 lines (5 loc) 486 B
import { IConfig, IOutput, ITSConfig, ReplaceTscAliasPathsOptions } from '../interfaces'; export declare function prepareConfig(options: ReplaceTscAliasPathsOptions): Promise<IConfig>; export declare const loadConfig: (file: string, output: IOutput, baseConfigDir?: string | null) => ITSConfig; export declare function normalizeTsConfigExtendsOption(ext: string | string[], file: string): string[]; export declare function resolveTsConfigExtendsPath(ext: string, file: string): string;