@ainc/script
Version:
Script compiler for typescript
19 lines • 449 B
TypeScript
/**
*****************************************
* 配置
*****************************************
*/
export interface Options {
context?: string;
watch?: boolean;
argv?: string[];
include: string[];
exclude?: string[];
}
/**
*****************************************
* 编译项目
*****************************************
*/
export declare function compile(options: Options): void;
//# sourceMappingURL=compiler.d.ts.map