The TypeScript Compiler was given no files for compilation, so it will skip compiling

后端 未结 6 1393
无人及你
无人及你 2020-12-17 02:38

When i am trying to Build my default JavaScript project(BlankApp Apache Cordova) in Visual Studio 2015 preview am getting following error.

The TypeScr

6条回答
  •  抹茶落季
    2020-12-17 03:14

    This warning was driving me nuts with ASP.NET 5 (asp.net core 1). If you double click the warning you open the Microsoft.TypeScript.targets file. Delete the line with CompileTypeScript and the warning goes away. I'm assuming this prevents TypeScript from compiling normally, which is fine by me as I don't want it anyway.

    
      
        CompileTypeScript;  <--- delete this line
        $(CompileDependsOn);
      
    

提交回复
热议问题