We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e77f9b2 commit de37f35Copy full SHA for de37f35
2 files changed
src/server/project.ts
@@ -294,7 +294,8 @@ namespace ts.server {
294
const info = {
295
projectName: this.getProjectName(),
296
version: this.projectStructureVersion,
297
- isInferred: this.projectKind === ProjectKind.Inferred
+ isInferred: this.projectKind === ProjectKind.Inferred,
298
+ options: this.getCompilerOptions()
299
};
300
// check if requested version is the same that we have reported last time
301
if (this.lastReportedFileNames && lastKnownVersion === this.lastReportedVersion) {
src/server/protocol.d.ts
@@ -507,6 +507,7 @@ declare namespace ts.server.protocol {
507
projectName: string;
508
isInferred: boolean;
509
version: number;
510
+ options: CompilerOptions;
511
}
512
513
export interface ProjectChanges {
0 commit comments