import type { FileTest } from './FileTest.type.js'; import type { TransformOptions } from '@babel/core'; export type Config = { 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: TransformOptions; timeProfiling: boolean; };