Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ianschmitz committed Oct 28, 2018
1 parent 011cc15 commit 2340d1a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Expand Up @@ -79,6 +79,14 @@ List of typescript diagnostic codes to ignore.
* **ignoreLints** `string[]`:
List of tslint rule names to ignore.

* **reportFiles** `string[]`:
Only report errors on files matching these glob patterns. This can be useful when certain types definitions have errors that are not fatal to your application. Default: `[]`.

```js
// in webpack.config.js
new ForkTsCheckerWebpackPlugin({ reportFiles: ['src/**/*.{ts,tsx}', '!src/skip.ts'] })
```

* **colors** `boolean`:
If `false`, disables built-in colors in logger messages. Default: `true`.

Expand Down

0 comments on commit 2340d1a

Please sign in to comment.