How to check TypeScript code for syntax errors from a command line?
The tsc –noEmit is what you’re searching. Do not emit compiler output files like JavaScript source code, source-maps or declarations. source TSDocs If you want lint code as well as check types on CI use tsc –noEmit && eslint source Stackoverflow comment