mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-05 08:11:30 -06:00
* Move codefix types into services/types.ts * Also split apart refactorProvider * Move all meanings of DocumentHighlights into one file * Use setter for object allocator * Remove unneeded namespace reference * Remove some shorthand references to nonlocal namespace variables * Convert WatchType string enum to a structure that can be merged across modules * Rename harness to harnessIO * Move accidental globals into namespace * Remove unused globals * Suppress lints - these qualifiers are needed for the migration to go smoothly * Hide global declaration
20 lines
1.1 KiB
TypeScript
20 lines
1.1 KiB
TypeScript
/* @internal */
|
|
namespace ts {
|
|
// Additional tsserver specific watch information
|
|
export interface WatchTypeRegistry {
|
|
ClosedScriptInfo: "Closed Script info",
|
|
ConfigFileForInferredRoot: "Config file for the inferred project root",
|
|
NodeModulesForClosedScriptInfo: "node_modules for closed script infos in them",
|
|
MissingSourceMapFile: "Missing source map file",
|
|
NoopConfigFileForInferredRoot: "Noop Config file for the inferred project root",
|
|
MissingGeneratedFile: "Missing generated file",
|
|
PackageJsonFile: "package.json file for import suggestions"
|
|
}
|
|
WatchType.ClosedScriptInfo = "Closed Script info";
|
|
WatchType.ConfigFileForInferredRoot = "Config file for the inferred project root";
|
|
WatchType.NodeModulesForClosedScriptInfo = "node_modules for closed script infos in them";
|
|
WatchType.MissingSourceMapFile = "Missing source map file";
|
|
WatchType.NoopConfigFileForInferredRoot = "Noop Config file for the inferred project root";
|
|
WatchType.MissingGeneratedFile = "Missing generated file";
|
|
WatchType.PackageJsonFile = "package.json file for import suggestions";
|
|
} |