You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`async`|`boolean`|`compiler.options.mode === 'development'`| If `true`, reports issues **after** webpack's compilation is done. Thanks to that it doesn't block the compilation. Used only in the `watch` mode. |
149
-
|`typescript`|`object` or `boolean`|`true`| If a `boolean`, it enables/disables TypeScript checker. If an `object`, see [TypeScript options](#typescript-options). |
150
-
|`eslint`|`object`|`undefined`| If `undefined`, it disables ESLint linter. If an `object`, see [ESLint options](#eslint-options). |
151
-
|`issue`|`object`|`{}`| See [Issues options](#issues-options). |
152
-
|`formatter`|`string` or `object`|`codeframe`| Available formatters are `basic` and `codeframe`. To [configure](https://babeljs.io/docs/en/babel-code-frame#options)`codeframe` formatter, pass object: `{ type: 'codeframe', options: { <coderame options> } }`. |
153
-
|`logger`|`object`|`{ infrastructure: 'silent', issues: 'console'}`| Available loggers are `silent`, `console`, and `webpack-infrastructure`. Infrastructure logger prints additional information, issue logger prints `issues` in the `async` mode. |
|`async`|`boolean`|`compiler.options.mode === 'development'`| If `true`, reports issues **after** webpack's compilation is done. Thanks to that it doesn't block the compilation. Used only in the `watch` mode. |
149
+
|`typescript`|`object` or `boolean`|`true`| If a `boolean`, it enables/disables TypeScript checker. If an `object`, see [TypeScript options](#typescript-options). |
150
+
|`eslint`|`object`|`undefined`| If `undefined`, it disables ESLint linter. If an `object`, see [ESLint options](#eslint-options). |
151
+
|`issue`|`object`|`{}`| See [Issues options](#issues-options). |
152
+
|`formatter`|`string` or `object`|`codeframe`| Available formatters are `basic` and `codeframe`. To [configure](https://babeljs.io/docs/en/babel-code-frame#options)`codeframe` formatter, pass object: `{ type: 'codeframe', options: { <coderame options> } }`. |
153
+
|`logger`|`object`|`{ infrastructure: 'silent', issues: 'console', devServer: true }`| Available loggers are `silent`, `console`, and `webpack-infrastructure`. Infrastructure logger prints additional information, issue logger prints `issues` in the `async` mode. If `devServer` is set to `false`, errors will not be reported to Webpack Dev Server. |
0 commit comments