TS: Disable output from tracing

This commit is contained in:
Asger F
2020-01-02 15:38:10 +00:00
parent 8f478f7caf
commit 2ca0e7d232
2 changed files with 9 additions and 1 deletions

View File

@@ -12,7 +12,9 @@ export class Project {
}
public load(): void {
this.program = ts.createProgram(this.config.fileNames, this.config.options);
let host = ts.createCompilerHost(this.config.options, true);
host.trace = undefined; // Disable tracing which would otherwise go to standard out
this.program = ts.createProgram(this.config.fileNames, this.config.options, host);
this.typeTable.setProgram(this.program);
}