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

Version Path
immosquare-cleaner-0.1.40 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.39 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.38 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.32 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.31 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.30 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.29 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.28 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.27 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.26 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.25 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.24 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.23 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts