@clscripts/ts-patch
Version:
ts-patch (tspc) clscripts implementation
21 lines • 653 B
TypeScript
import { Executable } from '@clscripts/cl-common';
export interface TsPatchOpts {
tsconfigPath?: string;
watch?: boolean;
noEmit?: boolean;
preserveWatchOutput?: boolean;
}
export declare class TsPatch implements Executable {
packageExecutable: string;
tsconfigPath?: string;
watch?: boolean;
noEmit?: boolean;
preserveWatchOutput?: boolean;
constructor(opts?: TsPatchOpts);
get tsconfigPathArg(): string;
get watchArg(): "" | "--watch";
get noEmitArg(): "" | "--noEmit";
get preserveWatchOutputArg(): "" | "--preserveWatchOutput";
get command(): string;
}
//# sourceMappingURL=script.d.ts.map