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.60 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.59 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.58 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.57 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.56 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.55 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.54 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.53 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.52 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.51 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.50 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.49 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.48 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.47 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.46 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.45 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.44 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.43 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.42 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts
immosquare-cleaner-0.1.41 node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts