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 { runTtsx } from "./internal/runTtsx"; const code = runTtsx(process.argv.slice(2)); if (typeof code === "number") { process.exitCode = code; }