@@ -100,7 +100,6 @@ interface WebpackCLIConfig {
100
100
interface WebpackCLICommand extends Command {
101
101
pkg : string | undefined ;
102
102
forHelp : boolean | undefined ;
103
- options : WebpackCLICommandOption [ ] ;
104
103
_args : WebpackCLICommandOption [ ] ;
105
104
}
106
105
@@ -187,10 +186,7 @@ type Callback<T extends unknown[]> = (...args: T) => void;
187
186
/**
188
187
* Webpack
189
188
*/
190
- type WebpackConfiguration = Configuration & {
191
- // TODO add extends to webpack types
192
- extends ?: string | string [ ] ;
193
- } ;
189
+ type WebpackConfiguration = Configuration ;
194
190
type ConfigOptions = PotentialPromise < WebpackConfiguration | CallableOption > ;
195
191
type CallableOption = ( env : Env | undefined , argv : Argv ) => WebpackConfiguration ;
196
192
type WebpackCompiler = Compiler | MultiCompiler ;
@@ -209,7 +205,6 @@ type FileSystemCacheOptions = WebpackConfiguration & {
209
205
210
206
type ProcessedArguments = Record < string , BasicPrimitive | RegExp | ( BasicPrimitive | RegExp ) [ ] > ;
211
207
212
- type MultipleCompilerStatsOptions = StatsOptions & { children : StatsOptions [ ] } ;
213
208
type CommandAction = Parameters < WebpackCLICommand [ "action" ] > [ 0 ] ;
214
209
215
210
interface WebpackRunOptions extends WebpackOptionsNormalized {
@@ -339,7 +334,6 @@ export {
339
334
Instantiable ,
340
335
JsonExt ,
341
336
ModuleName ,
342
- MultipleCompilerStatsOptions ,
343
337
PackageInstallOptions ,
344
338
PackageManager ,
345
339
Path ,
0 commit comments