Hello,
I have question.
If make a changes in the javascript code from
function Welcome(person: string) {
return "<h2>Hello " + person + ", Lets learn TypeScript</h2>";
}
to
function Welcome(person: string) {
return "<h2>Hello " + person + ", Lets learn testtest</h2>";
}
during the time when you have executed the project in debugging mode and when you press the refresh button in the browser, the changes won't display in the browser.
In other words, the changes in the javascript code, during the debugging mode, won't compile after you have press the button.
Is it possibly compile and display the result during the debugging mode?
Thank you!
Hello,
I have question.
If make a changes in the javascript code from
to
during the time when you have executed the project in debugging mode and when you press the refresh button in the browser, the changes won't display in the browser.
In other words, the changes in the javascript code, during the debugging mode, won't compile after you have press the button.
Is it possibly compile and display the result during the debugging mode?
Thank you!