Closed
Description
comment.ts
if (false) {
//I will be removed
}
//I will be removed
else {
//I will not be removed
var tmp;
//I will be removed
}
try{
//I will not be removed
var tmp;
//I will be removed
}
//I will be removed
catch(e){
//I will not be removed
var tmp;
//I will be removed
}
comment.js
if (false) {
}
else {
//I will not be removed
var tmp;
}
try {
//I will not be removed
var tmp;
}
catch (e) {
//I will not be removed
var tmp;
}
Are there any additional flags that can be set for TS to keep all comments?