ttsc
Version:
General-purpose TypeScript-Go compiler, runtime, plugin host, and LSP host.
12 lines (11 loc) • 475 B
TypeScript
/** Inputs for locating the tsconfig/jsconfig that owns an invocation. */
export interface ITtscProjectLocatorOptions {
/** Working directory for relative paths and upward config discovery. */
cwd?: string;
/** Source file used as the starting point for nearest-config discovery. */
file?: string;
/** Project root override for generated tsconfig wrappers. */
projectRoot?: string;
/** Explicit tsconfig/jsconfig path. */
tsconfig?: string;
}