@@ -14025,7 +14025,6 @@ declare namespace ts.server {
14025
14025
stopWatchingConfigFilesForInferredProjectRoot(info: ScriptInfo): void;
14026
14026
private forEachConfigFileLocation;
14027
14027
private getConfigFileNameForFile;
14028
- private getConfigFileNameForPossiblyClosedFile;
14029
14028
private printProjects;
14030
14029
private findConfiguredProjectByProjectName;
14031
14030
private getConfiguredProjectByCanonicalConfigFilePath;
@@ -14066,12 +14065,13 @@ declare namespace ts.server {
14066
14065
private removeRootOfInferredProjectIfNowPartOfOtherProject;
14067
14066
private ensureProjectForOpenFiles;
14068
14067
openClientFile(fileName: string, fileContent?: string, scriptKind?: ScriptKind, projectRootPath?: string): OpenConfiguredProjectResult;
14069
- getProjectForFileWithoutOpening(fileName: NormalizedPath): Project | undefined;
14068
+ getProjectForFileWithoutOpening(fileName: NormalizedPath): {
14069
+ readonly scriptInfo: ScriptInfo;
14070
+ readonly project: Project;
14071
+ } | undefined;
14070
14072
fileExists(fileName: NormalizedPath): boolean;
14071
14073
private findExternalProjectContainingOpenScriptInfo;
14072
- private getOrCreateConfiguredProject;
14073
14074
openClientFileWithNormalizedPath(fileName: NormalizedPath, fileContent?: string, scriptKind?: ScriptKind, hasMixedContent?: boolean, projectRootPath?: NormalizedPath): OpenConfiguredProjectResult;
14074
- tryOpenClientFileWithNormalizedPath(fileName: NormalizedPath, fileContent?: string, scriptKind?: ScriptKind, hasMixedContent?: boolean, projectRootPath?: NormalizedPath, dontOpenIfNotExists?: boolean): OpenConfiguredProjectResult | undefined;
14075
14075
private telemetryOnOpenFile;
14076
14076
closeClientFile(uncheckedFileName: string): void;
14077
14077
private collectChanges;
0 commit comments