I\'m very new to typescript and am trying it out in the latest Visual Studio 2015 RC.
At the moment it compiles the typescript file automatically and creates the und
I found that by unloading the project and editing the 'xproj' file, if I add the following xml under the project node (before the property group containing 'VSToolsPath'):
ES5
true
false
AMD
false
false
true
true
This fixed the issue and the .map files were generated on save (neatly under the js files). This enables me to hit my typescript breakpoints in Visual Studio (only with IE unfortunately).
Another beneficial side effect is that I can now export modules (because of the 'TypeScriptModuleKind' => AMD setting).