TypeStrong / fork-ts-checker-webpack-plugin

Webpack plugin that runs typescript type checker on a separate process.
MIT License
1.93k stars 238 forks source link

overlay: false not working #826

Closed is-harshul closed 8 months ago

is-harshul commented 9 months ago

Current behavior

Expected behavior

This error screen is expected to go away in dev mode.

Steps to reproduce the issue

Try passing:

devServer: {
    hot: true,
    client: {
      overlay: false,
    },
  },

in the config

Issue reproduction repository

It's a Private repo.

Environment

piotr-oles commented 8 months ago

It seems like a webpack configuration issue or a webpack bug. This plugin just reports issues that can be then consumed by the devserver and then displayed as an overlay. This plugin doesn't control overlay behaviour. It's a responsibility of the webpack-dev-server to respect the overlay: false option :)