refactor(ivy): remove the tsc passthrough option (#32219)

This option makes ngc behave as tsc, and was originally implemented before
ngtsc existed. It was designed so we could build JIT-only versions of
Angular packages to begin testing Ivy early, and is not used at all in our
current setup.

PR Close #32219
This commit is contained in:
Alex Rickabaugh
2019-08-20 10:54:02 -07:00
committed by Andrew Kushnir
parent 388578fec9
commit 2b64031ddc
5 changed files with 5 additions and 125 deletions

View File

@ -19,6 +19,6 @@ export interface AotCompilerOptions {
fullTemplateTypeCheck?: boolean;
allowEmptyCodegenFiles?: boolean;
strictInjectionParameters?: boolean;
enableIvy?: boolean|'ngtsc'|'tsc';
enableIvy?: boolean|'ngtsc';
createExternalSymbolFactoryReexports?: boolean;
}