feat(ivy): ngcc - turn on UMD processing (#25445)

PR Close #25445
This commit is contained in:
Pete Bacon Darwin
2019-04-28 20:48:35 +01:00
committed by Jason Aden
parent f6aa60c03c
commit f4655ea98a
5 changed files with 23 additions and 10 deletions

View File

@ -63,7 +63,7 @@ export interface NgccOptions {
pathMappings?: PathMappings;
}
const SUPPORTED_FORMATS: EntryPointFormat[] = ['esm5', 'esm2015'];
const SUPPORTED_FORMATS: EntryPointFormat[] = ['esm5', 'esm2015', 'umd'];
/**
* This is the main entry-point into ngcc (aNGular Compatibility Compiler).