I have read this post below:
Type Script is not generating JavaScript in my Visual Studio Community edition 2015
VS2015 Typescript compile to single file on save not working
TypeScript "Compile on save" feature not working in Visual Studio 2015
Regarding: "Do you bundle the JavaScript / TypeScript with another Tool?"
I am not sure whether I bundle the javascript with another tool or not. I am just using the default typescript functionality from visual studio 2015.
my probem is different. everytime I modify and save the typescript file, I have to stop debugging and start debugging again in visual studio so the javascript sync with the new typescript. is it possible not to do this? can i just save the typescript file without havign to redebug for the visual studio to refresh the javascript file? i am using visual studio 2015
this is my tsconfig.json
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [ "es2015", "dom" ],
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"compileOnSave": true,
"watch": true
}
}