File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
packages/angular_devkit/build_angular/src Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -189,8 +189,7 @@ export function serveWebpackBrowser(
189
189
// This is needed because we cannot use the inline option directly in the config
190
190
// because of the SuppressExtractedTextChunksWebpackPlugin
191
191
// Consider not using SuppressExtractedTextChunksWebpackPlugin when liveReload is enable.
192
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
193
- webpackDevServer . addDevServerEntrypoints ( config as any , {
192
+ webpackDevServer . addDevServerEntrypoints ( config , {
194
193
...config . devServer ,
195
194
inline : true ,
196
195
} ) ;
Original file line number Diff line number Diff line change @@ -194,8 +194,7 @@ export function getStylesConfig(wco: WebpackConfigOptions): webpack.Configuratio
194
194
} ) ,
195
195
...extraPostcssPlugins ,
196
196
postcssPresetEnv ( {
197
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
198
- browsers : supportedBrowsers as any , // Typings only allow a string
197
+ browsers : supportedBrowsers ,
199
198
autoprefixer : true ,
200
199
stage : 3 ,
201
200
} ) ,
You can’t perform that action at this time.
0 commit comments