UNPKG

ttsc

Version:

General-purpose TypeScript-Go compiler, runtime, plugin host, and LSP host.

9 lines (6 loc) 174 B
#!/usr/bin/env node import { runTtsc } from "./internal/runTtsc"; const code = runTtsc(process.argv.slice(2)); if (typeof code === "number") { process.exitCode = code; }