feat(compiler-cli): add a debug option to control the output

fixes #9208
This commit is contained in:
Victor Berchet
2016-06-15 14:56:56 -07:00
parent b620f4f456
commit 1eaa193c51
6 changed files with 18 additions and 5 deletions

View File

@ -15,6 +15,9 @@ interface Options extends ts.CompilerOptions {
// Print extra information while running the compiler
trace: boolean;
// Whether to embed debug information in the compiled templates
debug?: boolean;
}
export default Options;