TypeScript / Visual Studio 2012 / Compilation parameters

前端 未结 4 1326
失恋的感觉
失恋的感觉 2021-01-13 12:06

I need to generate Source Maps when the TypeScript Compiler is executed from Visual Studio 2012. In Sublime Text 2, I just had to add an extra parameter to the build script.

相关标签:
4条回答
  • 2021-01-13 12:39

    In 0.9.5 you can use the following: Upload the project and in the property group and the following tag:

    <TypeScriptSourceMap>true</TypeScriptSourceMap>
    

    That make the job.

    0 讨论(0)
  • 2021-01-13 12:49

    Follow the guide on this StackOverflow answer. replace --module amd to --sourcemap.

    Visual Studio TypeScript Options

    0 讨论(0)
  • 2021-01-13 12:53

    There isn't a VS 2012 UI for editing the TypeScript build flags (yet) but you can get what you want by editing the project file and adding the -sourcemap flag to that build step.

    <Target Name="BeforeBuild">
    <Exec Command="&quot;$(PROGRAMFILES)\Microsoft SDKs\TypeScript\0.8.0.0\tsc&quot; -sourcemap @(TypeScriptCompile ->'&quot;%(fullpath)&quot;', ' ')" />
    </Target>
    
    0 讨论(0)
  • 2021-01-13 12:57

    Mads Kristensen's Web Essentials extension for Visual Studio added support for producing source maps automatically in version 1.3. You need to enable it in in Tools -> Options for Web Essentials. http://visualstudiogallery.msdn.microsoft.com/07d54d12-7133-4e15-becb-6f451ea3bea6

    The free Express editions of Visual Studio does not support extensions.

    0 讨论(0)
提交回复
热议问题