I have trouble with VS 2015 and Typescript compile on save. If I enable combine all outputs into one file that output file will not be updated on save. During build the file
Full path is fine until you have to start building on different machines.
I for instance use R:\TFS-PROJECTS on my local machine but C:\TFS-PROJECTS on the TFS server (which also builds the typescript).
As a temporary solution I'm using junction.exe to make symbolic link (run as admin).
junction c:\TFS-PROJECTS r:\TFS-PROJECTS
That way I can just use the same full path. If you have vastly different hierarchies you could use C:\PROJECT1-ROOT and point that wherever you need.
Junction is a sysinternals program available for Microsoft :https://technet.microsoft.com/en-us/sysinternals/bb896768
Hoping a fix for this regression bug will be deployed soon.