mirror of
https://github.com/github/codeql.git
synced 2026-04-29 18:55:14 +02:00
TS: Disable output from tracing
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
@@ -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 |
|
||||
Reference in New Issue
Block a user