Compile a complete TypeScript project in IntelliJ

I use TypeScript in my project and I have many .ts files, about 50 files. I use IntelliJ and file watcher to compile on save. The fact is that I want to compile a complete project on a command and see if there are any errors in the full compilation of the project (there are dependencies), is there a good way to do this?

Thanks Gil Amran

+7
source share
1 answer

Do not use Idea to generate js result code. Use the Grunt Task Manager and the Grunt-TS ( Grunt-TS ) plugin from @Basarat.

0
source

All Articles