import { SourceFileCache } from '../utils/source-file-cache'; export interface CompilerPluginOptions { sourcemap: boolean; tsconfig: string; aot?: boolean; /** Skip TypeScript compilation setup. This is useful to re-use the TypeScript compilation from another plugin. */ noopTypeScriptCompilation?: boolean; advancedOptimizations?: boolean; thirdPartySourcemaps?: boolean; fileReplacements?: Record; sourceFileCache?: SourceFileCache; incremental: boolean; useTsProjectReferences?: boolean; } //# sourceMappingURL=compiler-plugin-options.d.ts.map