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);
}

View File

@@ -0,0 +1,6 @@
| node_modules/@types/foo/index.d.ts:1:17:1:19 | foo | () => any |
| test.ts:1:10:1:12 | foo | () => any |
| test.ts:1:10:1:12 | foo | () => any |
| test.ts:1:21:1:25 | "foo" | any |
| test.ts:3:1:3:3 | foo | () => any |
| test.ts:3:1:3:5 | foo() | any |