Files
tsbundle/ts/interfaces/index.ts

15 lines
291 B
TypeScript

export interface ICliOptions {
commonjs?: boolean;
skiplibcheck?: boolean;
production?: boolean;
bundler: 'esbuild' | 'rolldown' | 'rspack';
}
export interface IEnvTransportOptions {
cwd: string;
from: string;
to: string;
mode: 'test' | 'production';
argv: ICliOptions;
}