How to include TypeScript generated .js files in a TFS source?

I do not want to build all typescript files when building / starting. I just want to build them on save. However, the generated .js files are not checked in TFS, which means that another developer will have to open and save new / changed .ts files. Is there a way to include generated .js files in TFS?

I am using VS 2010, so I do not have the Web Essentials 2012 extension.

+5
source share
1 answer

The best way I used was to create an empty .js file with the expected output name in your solution and check it on TFS.

0
source

All Articles