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 29e93c3 commit b179cd1Copy full SHA for b179cd1
src/server/editorServices.ts
@@ -1979,11 +1979,12 @@ namespace ts.server {
1979
}
1980
1981
1982
- private closeConfiguredProject(configFile: NormalizedPath): void {
+ private closeConfiguredProject(configFile: NormalizedPath) {
1983
const configuredProject = this.findConfiguredProjectByProjectName(configFile);
1984
if (configuredProject && configuredProject.deleteOpenRef() === 0) {
1985
this.removeProject(configuredProject);
1986
1987
+ return configuredProject;
1988
1989
1990
closeExternalProject(uncheckedFileName: string, suppressRefresh = false): void {
0 commit comments