Sha256: c9c5e3216f240c2765e4005196213b616090b774b88ac5ee582ab672ce1ab32a
Contents?: true
Size: 1.03 KB
Versions: 33
Compression:
Stored size: 1.03 KB
Contents
/** * Typing for the parts of tsconfig that we care about */ export interface Tsconfig { extends?: string | string[]; compilerOptions?: { baseUrl?: string; paths?: { [key: string]: Array<string>; }; strict?: boolean; }; } export interface TsConfigLoaderResult { tsConfigPath: string | undefined; baseUrl: string | undefined; paths: { [key: string]: Array<string>; } | undefined; } export interface TsConfigLoaderParams { getEnv: (key: string) => string | undefined; cwd: string; loadSync?(cwd: string, filename?: string, baseUrl?: string): TsConfigLoaderResult; } export declare function tsConfigLoader({ getEnv, cwd, loadSync, }: TsConfigLoaderParams): TsConfigLoaderResult; export declare function walkForTsConfig(directory: string, existsSync?: (path: string) => boolean): string | undefined; export declare function loadTsconfig(configFilePath: string, existsSync?: (path: string) => boolean, readFileSync?: (filename: string) => string): Tsconfig | undefined;
Version data entries
33 entries across 33 versions & 1 rubygems