File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ const {
29
29
const makeSerializable = require ( "./util/makeSerializable" ) ;
30
30
31
31
/** @typedef {import("webpack-sources").Source } Source */
32
+ /** @typedef {import("../declarations/WebpackOptions").ResolveOptions } ResolveOptions */
32
33
/** @typedef {import("../declarations/WebpackOptions").WebpackOptionsNormalized } WebpackOptions */
33
34
/** @typedef {import("./Chunk") } Chunk */
34
35
/** @typedef {import("./Chunk").ChunkId } ChunkId */
@@ -83,7 +84,7 @@ const makeSerializable = require("./util/makeSerializable");
83
84
* @property {false|string|string[] } resource
84
85
* @property {string= } resourceQuery
85
86
* @property {string= } resourceFragment
86
- * @property {TODO } resolveOptions
87
+ * @property {ResolveOptions= } resolveOptions
87
88
*/
88
89
89
90
/** @typedef {ContextOptions & ContextModuleOptionsExtras } ContextModuleOptions */
Original file line number Diff line number Diff line change @@ -3082,7 +3082,7 @@ declare interface ContextModuleOptions {
3082
3082
resource : string | false | string [ ] ;
3083
3083
resourceQuery ?: string ;
3084
3084
resourceFragment ?: string ;
3085
- resolveOptions : any ;
3085
+ resolveOptions ?: ResolveOptions ;
3086
3086
}
3087
3087
declare class ContextReplacementPlugin {
3088
3088
constructor (
You can’t perform that action at this time.
0 commit comments