MCPcopy Create free account
hub / github.com/webpack/webpack-cli / KnownOptions

Interface KnownOptions

packages/webpack-cli/src/webpack-cli.ts:235–253  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

233type Schema = Parameters<(typeof webpack)["cli"]["getArguments"]>[0];
234
235interface KnownOptions {
236 config?: string[];
237 argv?: Argv;
238 env?: Env;
239 configNodeEnv?: string;
240 watchOptionsStdin?: boolean;
241 watch?: boolean;
242 failOnWarnings?: boolean;
243 isWatchingLikeCommand?: boolean;
244 progress?: boolean | "profile";
245 analyze?: boolean;
246 json?: boolean;
247 entry?: string | string[];
248 merge?: boolean;
249 configName?: string[];
250 disableInterpret?: boolean;
251 extends?: string[];
252 webpack: typeof webpack;
253}
254
255type Options =
256 // Webpack CLI own options

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected