mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-06-29 19:42:39 -05:00
Baseline
This commit is contained in:
@@ -7230,6 +7230,7 @@ declare namespace ts.server {
|
||||
private program;
|
||||
private externalFiles;
|
||||
private missingFilesMap;
|
||||
private plugins;
|
||||
private cachedUnresolvedImportsPerFile;
|
||||
private lastCachedUnresolvedImportsList;
|
||||
protected languageService: LanguageService;
|
||||
@@ -7345,6 +7346,9 @@ declare namespace ts.server {
|
||||
filesToString(writeProjectFileNames: boolean): string;
|
||||
setCompilerOptions(compilerOptions: CompilerOptions): void;
|
||||
protected removeRoot(info: ScriptInfo): void;
|
||||
protected enableGlobalPlugins(): void;
|
||||
protected enablePlugin(pluginConfigEntry: PluginImport, searchPaths: string[]): void;
|
||||
private enableProxy(pluginModuleFactory, configEntry);
|
||||
}
|
||||
/**
|
||||
* If a file is opened and no tsconfig (or jsconfig) is found,
|
||||
@@ -7373,7 +7377,6 @@ declare namespace ts.server {
|
||||
private typeAcquisition;
|
||||
private directoriesWatchedForWildcards;
|
||||
readonly canonicalConfigFilePath: NormalizedPath;
|
||||
private plugins;
|
||||
/** Ref count to the project when opened from external project */
|
||||
private externalProjectRefCount;
|
||||
private projectErrors;
|
||||
@@ -7384,8 +7387,6 @@ declare namespace ts.server {
|
||||
updateGraph(): boolean;
|
||||
getConfigFilePath(): NormalizedPath;
|
||||
enablePlugins(): void;
|
||||
private enablePlugin(pluginConfigEntry, searchPaths);
|
||||
private enableProxy(pluginModuleFactory, configEntry);
|
||||
/**
|
||||
* Get the errors that dont have any file name associated
|
||||
*/
|
||||
@@ -7397,7 +7398,6 @@ declare namespace ts.server {
|
||||
setProjectErrors(projectErrors: Diagnostic[]): void;
|
||||
setTypeAcquisition(newTypeAcquisition: TypeAcquisition): void;
|
||||
getTypeAcquisition(): TypeAcquisition;
|
||||
getExternalFiles(): SortedReadonlyArray<string>;
|
||||
close(): void;
|
||||
getEffectiveTypeRoots(): string[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user