UNPKG

typescript

Version:

TypeScript is a language for application scale JavaScript development

11 lines 302 B
/** * Shared utilities for the TypeScript API client. */ import getExePath from "#getExePath"; export function isSpawnOptions(options) { return !("pipe" in options); } export function resolveExePath(options) { return options.tsserverPath ?? getExePath(); } //# sourceMappingURL=options.js.map