UNPKG

@tsbb/core

Version:

TSBB is a zero-config CLI that helps you develop, test, and publish modern TypeScript project.

10 lines (9 loc) 302 B
import { type BabelCompileOptions } from '@tsbb/babel'; export interface CompileOptions extends BabelCompileOptions { watch?: boolean; bail?: boolean; build?: boolean; entry?: string[]; [key: string]: any; } export declare function compile(options?: CompileOptions): Promise<void>;