1 | import type { CompilerHost, CompilerOptions } from '@angular/compiler-cli';
|
2 | import ts from 'typescript';
|
3 | import { NgPackageConfig } from '../../ng-package.schema';
|
4 | import { FileCache } from '../file-system/file-cache';
|
5 | import { BuildGraph } from '../graph/build-graph';
|
6 | import { EntryPointNode } from '../ng-package/nodes';
|
7 | import { StylesheetProcessor } from '../styles/stylesheet-processor';
|
8 | export declare function cacheCompilerHost(graph: BuildGraph, entryPoint: EntryPointNode, compilerOptions: CompilerOptions, moduleResolutionCache: ts.ModuleResolutionCache, stylesheetProcessor?: StylesheetProcessor, inlineStyleLanguage?: NgPackageConfig['inlineStyleLanguage'], sourcesFileCache?: FileCache): CompilerHost;
|
9 | export declare function augmentProgramWithVersioning(program: ts.Program): void;
|