feature(ngc): allow codegen to skip over .d.ts inputs (#11021)

This commit is contained in:
Alex Eagle
2016-08-23 16:26:35 -07:00
committed by Kara
parent aa5c8ca61f
commit c7a874dd2f
2 changed files with 13 additions and 3 deletions

View File

@ -16,6 +16,11 @@ interface Options extends ts.CompilerOptions {
// Don't produce .ngfactory.ts or .css.shim.ts files
skipTemplateCodegen: boolean;
// Whether to generate code for library code.
// If true, produce .ngfactory.ts and .css.shim.ts files for .d.ts inputs.
// Default is true.
generateCodeForLibraries?: boolean;
// Print extra information while running the compiler
trace: boolean;