| 233 | type Schema = Parameters<(typeof webpack)["cli"]["getArguments"]>[0]; |
| 234 | |
| 235 | interface 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 | |
| 255 | type Options = |
| 256 | // Webpack CLI own options |
nothing calls this directly
no outgoing calls
no test coverage detected