-
Notifications
You must be signed in to change notification settings - Fork 13k
Closed
Labels
CommittedThe team has roadmapped this issueThe team has roadmapped this issueFixedA PR has been merged for this issueA PR has been merged for this issueSuggestionAn idea for TypeScriptAn idea for TypeScript
Description
Any plan for ES3/ES5 support similar to this
let x = 123;
let _x = 123;
let _x2 = 123;
{
let x = 56
console.log(x);
}
var x = 123;
var _x = 123;
var _x2 = 123;
{
var _x3 = 56;
console.log(_x3);
}
Metadata
Metadata
Assignees
Labels
CommittedThe team has roadmapped this issueThe team has roadmapped this issueFixedA PR has been merged for this issueA PR has been merged for this issueSuggestionAn idea for TypeScriptAn idea for TypeScript