typescript-strict-plugin
typescript-strict-plugin copied to clipboard
Make tsc --project ./tsconfig.json show fails without using "yarn tsc-strics"
Make tsc --project ./tsconfig.json
show fails (if your plugin is added) without the need to use "yarn tsc-strics".
Having separate CLI to show errors for strict files creates many problems.
- Not easy parralelisation
- Need to have separate watch the same files (which uses CPU and so on)
- Need to have separate view to see those errors
I don't think it's really possible. Plugins are only for the language server to show errors inside the IDE's and we don't have really a way to make tsc
to show fails on the files with strict errors. Do you have any idea how could we do this?
That's sad :( Maybe a wrapper on top of tsc that runs tsc and tsc-strics in parallel and then at the end combine both reports into one? So that we run just one command, and have one output that we need to follow?