We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52792c7 commit 956711bCopy full SHA for 956711b
1 file changed
docs/documentation/build.md
@@ -118,6 +118,16 @@ Remember to disable the service worker while developing to avoid stale code.
118
119
Note: service worker support is experimental and subject to change.
120
121
+### ES2015 support
122
+
123
+To build in ES2015 mode, edit `./tsconfig.json` to use `"target": "es2015"` (instead of `es5`).
124
125
+This will cause application TypeScript and Uglify be output as ES2015, and third party libraries
126
+to be loaded through the `es2015` entry in `package.json` if available.
127
128
+Be aware that JIT does not support ES2015 and so you should build/serve your app with `--aot`.
129
+See https://github.com/angular/angular-cli/issues/7797 for details.
130
131
## Options
132
<details>
133
<summary>aot</summary>
0 commit comments