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
6.[Open a Pull Request](https://help.github.com/articles/creating-a-pull-request/#creating-the-pull-request) to the `master` branch with a clear title and description.
78
+
6.[Open a Pull Request](https://help.github.com/articles/creating-a-pull-request/#creating-the-pull-request) to the `main` branch with a clear title and description.
79
79
80
80
**Tips**:
81
81
@@ -217,5 +217,5 @@ otherwise use **rebase and merge**.
217
217
218
218
### Releasing a stable version
219
219
220
-
Fixes and tested features from the `beta` branch can be merged with the `master` branch. Please ensure your branch is
221
-
up to date with the `master` and then [open a Pull Request](https://github.com/TypeStrong/fork-ts-checker-webpack-plugin/compare/master...).
220
+
Fixes and tested features from the `beta` branch can be merged with the `main` branch. Please ensure your branch is
221
+
up to date with the `main` and then [open a Pull Request](https://github.com/TypeStrong/fork-ts-checker-webpack-plugin/compare/main...).
|`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. |
143
-
|`typescript`|`object` or `boolean`|`true`| If a `boolean`, it enables/disables TypeScript checker. If an `object`, see [TypeScript options](#typescript-options). |
144
-
|`eslint`|`object`|`undefined`| If `undefined`, it disables ESLint linter. If an `object`, see [ESLint options](#eslint-options). |
145
-
|`issue`|`object`|`{}`| See [Issues options](#issues-options). |
146
-
|`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> } }`. |
|`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. |
142
+
|`typescript`|`object` or `boolean`|`true`| If a `boolean`, it enables/disables TypeScript checker. If an `object`, see [TypeScript options](#typescript-options). |
143
+
|`eslint`|`object`|`undefined`| If `undefined`, it disables ESLint linter. If an `object`, see [ESLint options](#eslint-options). |
144
+
|`issue`|`object`|`{}`| See [Issues options](#issues-options). |
145
+
|`formatter`|`string` or `object`or `function`|`codeframe`| Available formatters are `basic`, `codeframe`and a custom `function`. To [configure](https://babeljs.io/docs/en/babel-code-frame#options)`codeframe` formatter, pass object: `{ type: 'codeframe', options: { <coderame options> } }`. |
147
146
|`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