All files / lib/cache cacheConfig.d.ts

0% Statements 0/17
0% Branches 0/1
0% Functions 0/1
0% Lines 0/17

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18                                   
import { CacheOptions } from "../types/CacheOptions";
export declare function getCacheConfig(cwd: string, cacheOptions: CacheOptions): {
    cacheStorageConfig: import("backfill-config").CacheStorageConfig;
    clearOutput: boolean;
    internalCacheFolder: string;
    logFolder: string;
    logLevel: "verbose" | "silly" | "info" | "warn" | "error" | "mute";
    name: string;
    mode: "READ_ONLY" | "WRITE_ONLY" | "READ_WRITE" | "PASS";
    outputGlob: string[];
    packageRoot: string;
    performanceReportName?: string | undefined;
    producePerformanceLogs: boolean;
    validateOutput: boolean;
    environmentGlob: string[];
    cacheKey: string;
};