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 2e319e4 commit 95894faCopy full SHA for 95894fa
src/common/config.ts
@@ -94,22 +94,19 @@ const OPTIONS = {
94
"greedy-arrays": true,
95
"short-option-groups": false,
96
},
97
- object: ["httpHeaders"],
98
} as Readonly<Options>;
99
100
interface Options {
101
string: string[];
102
boolean: string[];
103
array: string[];
104
- object: string[];
105
alias: Record<string, string>;
106
configuration: Record<string, boolean>;
107
}
108
109
export const ALL_CONFIG_KEYS = new Set(
110
(OPTIONS.string as readonly string[])
111
.concat(OPTIONS.array)
112
- .concat(OPTIONS.object)
113
.concat(OPTIONS.boolean)
114
.concat(Object.keys(OPTIONS.alias))
115
);
0 commit comments