Skip to content

Commit

Permalink
chore(lint): fix eslint warning (@typescript-eslint/no-explicit-any)
Browse files Browse the repository at this point in the history
  • Loading branch information
milesrichardson committed Aug 29, 2022
1 parent 63c6b81 commit a39788c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/PreviewServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export class PreviewServer {

if (name === 'webpackConfig') {
const prevBaseConfig = this.baseWebpackConfig
const nextWebpackConfig = value as any
const nextWebpackConfig = value as unknown as Configuration
this.baseWebpackConfig = merge(prevBaseConfig, nextWebpackConfig || {})
}
}
Expand Down

0 comments on commit a39788c

Please sign in to comment.