2017-10-20 11:04:56 -05:00

16 lines
407 B
TypeScript

import { tsModule } from "./tsproxy";
export interface IOptions {
include: string | string[];
exclude: string | string[];
check: boolean;
verbosity: number;
clean: boolean;
cacheRoot: string;
abortOnError: boolean;
rollupCommonJSResolveHack: boolean;
tsconfig: string;
useTsconfigDeclarationDir: boolean;
typescript: typeof tsModule;
tsconfigOverride: any;
}