-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Closed
Description
It appears that Angular CLI outputs only in ES5.
I would like to be able to choose the ES target, e.g. ES2015.
This can produce smaller, faster, and more readable code.
(And yes, sources maps can account for the readability part, but they have their own sets of disadvantages, including terrible performance for the CLI.)
Compare
class A { example() { return 5 } }
and
A = function() {}; A.prototype.example = function() { return 5 }
Metadata
Metadata
Assignees
Labels
No labels