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(
189189 // This is needed because we cannot use the inline option directly in the config
190190 // because of the SuppressExtractedTextChunksWebpackPlugin
191191 // 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 , {
194193 ...config . devServer ,
195194 inline : true ,
196195 } ) ;
Original file line number Diff line number Diff line change @@ -194,8 +194,7 @@ export function getStylesConfig(wco: WebpackConfigOptions): webpack.Configuratio
194194 } ) ,
195195 ...extraPostcssPlugins ,
196196 postcssPresetEnv ( {
197- // eslint-disable-next-line @typescript-eslint/no-explicit-any
198- browsers : supportedBrowsers as any , // Typings only allow a string
197+ browsers : supportedBrowsers ,
199198 autoprefixer : true ,
200199 stage : 3 ,
201200 } ) ,
You can’t perform that action at this time.
0 commit comments