We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9046fcb commit 5407078Copy full SHA for 5407078
src/server/project.ts
@@ -772,9 +772,10 @@ namespace ts.server {
772
// unknown version - return everything
773
const projectFileNames = this.getFileNames();
774
const externalFiles = this.getExternalFiles().map(f => toNormalizedPath(f));
775
- this.lastReportedFileNames = arrayToSet(projectFileNames.concat(externalFiles));
+ const allFiles = projectFileNames.concat(externalFiles);
776
+ this.lastReportedFileNames = arrayToSet(allFiles);
777
this.lastReportedVersion = this.projectStructureVersion;
- return { info, files: projectFileNames, projectErrors: this.getGlobalProjectErrors() };
778
+ return { info, files: allFiles, projectErrors: this.getGlobalProjectErrors() };
779
}
780
781
0 commit comments