Angular-cli: Support "target": "es6" in tsconfig.json

Created on 18 May 2017  路  9Comments  路  Source: angular/angular-cli

Bug Report or Feature Request (mark with an x)

- [ ] bug report -> please search issues before submitting
- [x] feature request

Versions.

@angular/cli: 1.0.3
node: 6.9.5
os: darwin x64

Repro steps.

Change tsconfig.json "target" to "ES6" and run ng build --prod. UglifyJS will cause an error and the build will fail.

The log given by the failure.

ERROR in main.87940961b85a05fb6d79.bundle.js from UglifyJs
Unexpected token: name (CoreModule) [main.87940961b85a05fb6d79.bundle.js:29,6]

Desired functionality.

Either the CLI should replace the UglifyJS plugin with an ES6-compatible plugin (such as Babili) or the CLI should disable minifying when the target is ES6.

Another option would be to expose a flag to developers to disable minifying.

Mention any other details that might be useful.

5730 #5352 #4554 and #3191 are all issues that have been closed because the CLI does not support an ES6 target.

There is no open issue to track ES6 support, and with over 1 billion devices supporting ES6 with Chrome and Safari, it does not make sense to limit developers to ES5 compiled code when the workaround is as easy as opting out of minifying.

medium (days) 3 (nice to have) inconvenient

Most helpful comment

To be clear, it has not been renamed, the official name is "ECMAScript 2015", the 6th edition of ECMAScript. It has been abbreviated by the community as ES2015 or ES6. Neither of those abbreviations are standard from Ecma International.

It does look like I missed #2907 in my search for related issues. @sumitarora you're assigned to that issue, but there's no severity or effort labels attached to it. That ticket was made back in October of 2016, has it fallen through the cracks?

All 9 comments

We are covering ES2015 target support on #2907

Also ES6 has been renamed to ES2015, let's better use the standard name.

To be clear, it has not been renamed, the official name is "ECMAScript 2015", the 6th edition of ECMAScript. It has been abbreviated by the community as ES2015 or ES6. Neither of those abbreviations are standard from Ecma International.

It does look like I missed #2907 in my search for related issues. @sumitarora you're assigned to that issue, but there's no severity or effort labels attached to it. That ticket was made back in October of 2016, has it fallen through the cracks?

I don't think this need to be configurable at all, simply overwritten to target: es5 during production build internally, and that's it.

@imcotton I disagree. I want to build the app compiled to ES6. This is possible using webpack or other build tools. There's no reason to force the developer to use ES5 when using the cli

@hotforfeature I meant without ejecting from cli, if however you decide to crafting without cli's help, you can do anything you like by ng eject already, right?

Any updates on this?

Heya, I'm consolidating all the ES2015 support requests on the same issue, so it can be better actioned on.

Duplicate of https://github.com/angular/angular-cli/issues/2907.

This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.

Read more about our automatic conversation locking policy.

_This action has been performed automatically by a bot._

Was this page helpful?
0 / 5 - 0 ratings