You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
583 B
27 lines
583 B
import type { LogLevel } from 'vite';
|
|
export interface CliOptions {
|
|
'--'?: string[];
|
|
c?: boolean | string;
|
|
config?: string;
|
|
platform?: string;
|
|
p?: string;
|
|
ssr?: boolean;
|
|
base?: string;
|
|
debug?: boolean | string;
|
|
d?: boolean | string;
|
|
filter?: string;
|
|
f?: string;
|
|
logLevel?: LogLevel;
|
|
l?: LogLevel;
|
|
m?: string;
|
|
mode?: string;
|
|
clearScreen?: boolean;
|
|
autoHost?: string;
|
|
autoPort?: number;
|
|
devtools?: boolean;
|
|
devtoolsHost?: string;
|
|
devtoolsPort?: number;
|
|
subpackage?: string;
|
|
plugin?: string;
|
|
}
|