We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f7fdde commit 1a171e2Copy full SHA for 1a171e2
types/index.d.ts
@@ -233,7 +233,9 @@ export declare namespace RspackChain {
233
clean(value: RspackOutput['clean']): this;
234
}
235
236
- type RspackDevServer = Required<NonNullable<Configuration['devServer']>>;
+ type RspackDevServer = Required<
237
+ Exclude<Configuration['devServer'], false | null | undefined>
238
+ >;
239
240
type DevServerShorthandMethods<T> = {
241
[K in keyof RspackDevServer]-?: (value: RspackDevServer[K]) => T;
0 commit comments