fix(ivy): don't use a custom ts.CompilerHost for ngtsc (#25080)

ngtsc used to have a custom ts.CompilerHost which delegated to the plain
ts.CompilerHost. There's no need for this wrapper class and it causes
issues with CLI integration, so delete it.

PR Close #25080
This commit is contained in:
Alex Rickabaugh
2018-07-26 09:10:42 -07:00
committed by Igor Minar
parent e0c0c44d99
commit 6fe865b080
3 changed files with 0 additions and 82 deletions

View File

@ -13,7 +13,6 @@ import * as ts from 'typescript';
import * as api from '../transformers/api';
import {ComponentDecoratorHandler, DirectiveDecoratorHandler, InjectableDecoratorHandler, NgModuleDecoratorHandler, PipeDecoratorHandler, ResourceLoader, SelectorScopeRegistry} from './annotations';
import {CompilerHost} from './compiler_host';
import {TypeScriptReflectionHost} from './metadata';
import {FileResourceLoader, HostResourceLoader} from './resource_loader';
import {IvyCompilation, ivyTransformFactory} from './transform';