Igorek
Igorek

Reputation: 15850

How do I force TypeScript recompile in VS2013?

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

enter image description here

Upvotes: 2

Views: 2731

Answers (1)

Ross Scott
Ross Scott

Reputation: 1732

When you rebuild the solution in Visual Studio 2013 all TypeScript files get compiled into their JS files.

Upvotes: 2

Related Questions