mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-16 05:58:32 -06:00
fix typo
This commit is contained in:
parent
8ff0febabe
commit
e817faabfe
@ -1470,7 +1470,7 @@ namespace ts.server {
|
||||
private addExternalProjectFilesForVersionedProjects(knownProjects: protocol.ExternalProjectInfo[], projects: VersionedProject[], result: protocol.ExternalProjectFiles[]): void {
|
||||
for (const proj of projects) {
|
||||
const knownProject = ts.forEach(knownProjects, p => p.projectFileName === proj.getProjectFileName() && p);
|
||||
result.push(proj.getChangesSinceVersion(knownProjects && knownProject.version));
|
||||
result.push(proj.getChangesSinceVersion(knownProject && knownProject.version));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user