Show tsc errors by directories.
npm install @slackoff/tsc-err-dirsDisplay tsc errors count on file tree, can hot update when you change those files.

> Warning: We recommend you to use this CLI app in Mac OS or Linux,
since it's using a lot of shell features which may not have good support in Windows.
``bash`
npm i -g @slackoff/tsc-err-dirs
`bashtsconfig.jsonthe project root path MUST contains
`
tsc-err-dirs
- --engine (shorthand: -e)'tsc' | 'vue-tsc'
Type:
Select which tsc to be executed.
Since tsc doesn't provide a way to get the errors count of each file, we have to use a trick to get it.
1. Use tsc --noEmit --pretty false` to get all the errors of each file which are not prettified format.
2. Extract stdout and parse it to get the errors info of each file.
3. Use inquirer-file-tree-selection-prompt to display the errors count on file tree.
MIT License © 2022 ShenQingchuan