Is there a way or third-party library that can help generate a report file (such as .html, .csv, etc.) after running TypeScript typechecking with tsc?
I need to create a report on typechecking in my Next.js Project, capturing all the output from
tsc --noEmit --watch --incremental
This report should not only be displayed in the terminal but also saved as a file.
Expected Workflow:
- Run TypeScript Typecheck
- Generate a report detailing any errors that occurred
Additional Details: I am using Next.js for this project.
- Reviewing tsc documentation
- Exploring external libraries