I have generated a angular 2 application with the angular 2 CLI.
In the index.html file is stuff like:
{{#each scripts.polyfills}}
<script src="Application/{{.}}"></script>
{{/each}}
When the application is build with the CLI command 'ng build' the output of index.html is:
<script src="Application/vendor/scripts1.js"></script>
<script src="Application/vendor/scripts2.js"></script>
<script src="Application/vendor/scripts3.js"></script>
Now I ask you where is that #each comming from means what language/library?
and
where is the scripts.polyfills object defined in my CLI created angular 2 app.
I can not find any folder/variable with name 'scripts' anywhere.