Reputation: 15850
I have a project where other developers modify TypeScript files. We do not include .js files in the solution, since they're autogenerated and build server is not happy if they're in the solution.
How do I force my VS2013 box to recompile TypeScript files into .js files so that when I get latest changes from my Typescript developers, my .js is up to date?
This is what the project settings currently looks like
Upvotes: 2
Views: 2731
Reputation: 1732
When you rebuild the solution in Visual Studio 2013 all TypeScript files get compiled into their JS files.
Upvotes: 2