feat(tools): allow disabling annotation lowering

This commit is contained in:
Chuck Jazdzewski
2016-11-14 16:08:38 -08:00
parent aac37bedc0
commit c1a62e2154
2 changed files with 29 additions and 2 deletions

View File

@ -29,6 +29,9 @@ interface Options extends ts.CompilerOptions {
// Default is true.
generateCodeForLibraries?: boolean;
// Modify how angular annotations are emitted to improve tree-shaking.
annotationsAs?: string; /* 'decorator'|'static field' */
// Print extra information while running the compiler
trace: boolean;