You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
export=Main;
module Main{// Test 1classFoo{// Test 2publicbar=5;// Test 3}// Test 4}
produces the following JS output
define(["require","exports"],function(require,exports){varMain;(function(Main){// Test 1varFoo=(function(){functionFoo(){// Test 2this.bar=5;}returnFoo;})();})(Main||(Main={}));returnMain;});
NOTE that the comments // Test 3 and // Test 4 are not present
I would expect that all comments in the TS file are preserved in the generated JS file
The text was updated successfully, but these errors were encountered:
The following TS file
produces the following JS output
NOTE that the comments // Test 3 and // Test 4 are not present
I would expect that all comments in the TS file are preserved in the generated JS file
The text was updated successfully, but these errors were encountered: