tsbundle/ts/interfaces/index.ts

15 lines
287 B
TypeScript
Raw Permalink Normal View History

2022-03-15 23:21:05 +00:00
export interface ICliOptions {
commonjs?: boolean;
skiplibcheck?: boolean;
production?: boolean;
bundler: 'parcel' | 'esbuild' | 'rollup'
}
export interface IEnvTransportOptions {
cwd: string;
from: string;
to: string;
mode: 'test' | 'production',
argv: ICliOptions
}