Skip to content

Commit

Permalink
fix/issue-4279-webpack_v5_xx-optimization-type-annotation-update (#4280)
Browse files Browse the repository at this point in the history
Co-authored-by: noahehall <noahehall@users.noreply.github.com>
  • Loading branch information
noahehall and noahehall committed Mar 6, 2022
1 parent b8906aa commit d55f290
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -239,15 +239,15 @@ declare module 'webpack' {

declare type OptimizationOptions = {
checkWasmTypes?: boolean,
chunkIds?: 'natural' | 'named' | 'size' | 'total-size' | false,
chunkIds?: 'natural' | 'named' | 'deterministic' | 'size' | 'total-size' | false,
concatenateModules?: boolean,
flagIncludedChunks?: boolean,
hashedModuleIds?: boolean,
mangleWasmImports?: boolean,
mergeDuplicateChunks?: boolean,
minimize?: boolean,
minimizer?: Array<WebpackPluginInstance | WebpackPluginFunction>,
moduleIds?: 'natural' | 'named' | 'hashed' | 'size' | 'total-size' | false,
moduleIds?: 'natural' | 'named' | 'hashed' | 'deterministic' | 'size' | false,
namedChunks?: boolean,
namedModules?: boolean,
noEmitOnErrors?: boolean,
Expand Down

0 comments on commit d55f290

Please sign in to comment.