VS2015 Typescript compile to single file on save not working

后端 未结 4 864
隐瞒了意图╮
隐瞒了意图╮ 2020-12-09 18:14

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

4条回答
  •  旧时难觅i
    2020-12-09 18:49

    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.

提交回复
热议问题