k-maru / grunt-typescript

MIT License
137 stars 60 forks source link

Transpile only files which have changed #113

Open screenm0nkey opened 9 years ago

screenm0nkey commented 9 years ago

It would be great to have an option to only transpile files which have changed. It currently converts all my files every time I change a single .ts file

theBull commented 9 years ago

I could be wrong, but this is one of the general downsides of the typescript compiler as a whole, I think. There's really no way for it to deal with only 1 .ts; in order to generate an output file it needs to transpile all of your designated .ts files. Someone please correct me if I'm wrong. HTH.

theBull commented 9 years ago

Check out #92 - might be related to what you're asking.