We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe8d0f2 commit 06c10f5Copy full SHA for 06c10f5
packages/cli/src/commands/config.ts
@@ -21,11 +21,9 @@ export interface ConfigOptions extends SharedOptions {
21
command: 'get' | 'set' | 'list' | 'clear';
22
key?: string;
23
value?: string;
24
- all?: boolean;
25
- global?: boolean;
26
- g?: boolean;
27
- verbose?: boolean;
28
- v?: boolean;
+ all: boolean; // Has default value in builder, so it's always defined
+ global: boolean; // Has default value in builder, so it's always defined
+ verbose: boolean; // Has default value in builder, so it's always defined
29
}
30
31
export const command: CommandModule<SharedOptions, ConfigOptions> = {
0 commit comments