2018-02-01 20:37:53 -07:00

17 lines
435 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;
tsconfigDefaults: any;
}