Files
vscode/build/lib/typeScriptLanguageServiceHost.ts
2025-10-23 13:38:06 +00:00

78 lines
2.2 KiB
TypeScript

/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import ts from 'typescript';
import fs from 'node:fs';
import { normalize } from 'node:path';
export type IFileMap = Map</*fileName*/ string, string>;
function normalizePath(filePath: string): string {
return normalize(filePath);
}
/**
* A TypeScript language service host
*/
export class TypeScriptLanguageServiceHost implements ts.LanguageServiceHost {
constructor(
private readonly ts: typeof import('typescript'),
private readonly topLevelFiles: IFileMap,
private readonly compilerOptions: ts.CompilerOptions,
) { }
// --- language service host ---------------
getCompilationSettings(): ts.CompilerOptions {
return this.compilerOptions;
}
getScriptFileNames(): string[] {
return [
...this.topLevelFiles.keys(),
this.ts.getDefaultLibFilePath(this.compilerOptions)
];
}
getScriptVersion(_fileName: string): string {
return '1';
}
getProjectVersion(): string {
return '1';
}
getScriptSnapshot(fileName: string): ts.IScriptSnapshot {
fileName = normalizePath(fileName);
if (this.topLevelFiles.has(fileName)) {
return this.ts.ScriptSnapshot.fromString(this.topLevelFiles.get(fileName)!);
} else {
return ts.ScriptSnapshot.fromString(fs.readFileSync(fileName).toString());
}
}
getScriptKind(_fileName: string): ts.ScriptKind {
return this.ts.ScriptKind.TS;
}
getCurrentDirectory(): string {
return '';
}
getDefaultLibFileName(options: ts.CompilerOptions): string {
return this.ts.getDefaultLibFilePath(options);
}
readFile(path: string, encoding?: string): string | undefined {
path = normalizePath(path);
if (this.topLevelFiles.get(path)) {
return this.topLevelFiles.get(path);
}
return ts.sys.readFile(path, encoding);
}
fileExists(path: string): boolean {
path = normalizePath(path);
if (this.topLevelFiles.has(path)) {
return true;
}
return ts.sys.fileExists(path);
}
}