mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-12-15 00:06:16 -06:00
44 lines
1.9 KiB
TypeScript
44 lines
1.9 KiB
TypeScript
/* @internal */
|
|
namespace ts.server {
|
|
// tslint:disable variable-name
|
|
export const ActionSet: ActionSet = "action::set";
|
|
export const ActionInvalidate: ActionInvalidate = "action::invalidate";
|
|
export const ActionPackageInstalled: ActionPackageInstalled = "action::packageInstalled";
|
|
export const ActionValueInspected: ActionValueInspected = "action::valueInspected";
|
|
export const EventTypesRegistry: EventTypesRegistry = "event::typesRegistry";
|
|
export const EventBeginInstallTypes: EventBeginInstallTypes = "event::beginInstallTypes";
|
|
export const EventEndInstallTypes: EventEndInstallTypes = "event::endInstallTypes";
|
|
export const EventInitializationFailed: EventInitializationFailed = "event::initializationFailed";
|
|
|
|
export namespace Arguments {
|
|
export const GlobalCacheLocation = "--globalTypingsCacheLocation";
|
|
export const LogFile = "--logFile";
|
|
export const EnableTelemetry = "--enableTelemetry";
|
|
export const TypingSafeListLocation = "--typingSafeListLocation";
|
|
export const TypesMapLocation = "--typesMapLocation";
|
|
/**
|
|
* This argument specifies the location of the NPM executable.
|
|
* typingsInstaller will run the command with `${npmLocation} install ...`.
|
|
*/
|
|
export const NpmLocation = "--npmLocation";
|
|
}
|
|
|
|
export function hasArgument(argumentName: string) {
|
|
return sys.args.indexOf(argumentName) >= 0;
|
|
}
|
|
|
|
export function findArgument(argumentName: string): string | undefined {
|
|
const index = sys.args.indexOf(argumentName);
|
|
return index >= 0 && index < sys.args.length - 1
|
|
? sys.args[index + 1]
|
|
: undefined;
|
|
}
|
|
|
|
/*@internal*/
|
|
export function nowString() {
|
|
// E.g. "12:34:56.789"
|
|
const d = new Date();
|
|
return `${d.getHours()}:${d.getMinutes()}:${d.getSeconds()}.${d.getMilliseconds()}`;
|
|
}
|
|
}
|