构建错误:命令“tsc --comments --module AMD --sourcemap --target ES3”退出,代码为1

时间:2013-05-01 21:43:27

标签: visual-studio-2012 build typescript

我在使用TypeScript项目的Visual Studio HTML应用程序中构建时收到以下错误:

The command "tsc  --comments --module AMD --sourcemap --target ES3 " exited with code 1.    ProjectName

1 个答案:

答案 0 :(得分:3)

我遇到的问题是项目文件中没有引用index.ts文件。

修复是添加到ProjectName.csproj

<ItemGroup>
  <TypeScriptCompile Include="index.ts" />
</ItemGroup>