ttsc
Version:
General-purpose TypeScript-Go compiler, runtime, plugin host, and LSP host.
13 lines (11 loc) • 432 B
text/typescript
/**
* Ttsc — public TypeScript entry.
*
* The package root intentionally exposes only the programmatic compiler class
* and the plugin-author contracts. CLI launcher functions, binary resolution,
* project parsing helpers, and native build helpers stay internal so the public
* package surface remains small and stable.
*/
export * from "./TtscCompiler";
export * from "./TtscService";
export * from "./structures/index";