import { FileTest } from "./FileTest.type.js"; export type UserConfig = { mode?: string | undefined; transformCaching?: 'content' | 'hash' | false; transformCacheStorage?: 'file' | 'memory'; transformCacheStorageLocation?: null | string; transformCacheComparisonMethod?: 'source' | 'source-hash' | 'modified-date'; static?: FileTest | FileTest[] | null; quiet?: boolean; debug?: boolean; babelOptions?: unknown; timeProfiling?: boolean; };