In angular-cli.json
I have:
\"polyfills\": \"polyfills.ts\"
\"scripts\": [\"script1.ts\"]
I want to add another another polyfill s
If you want cli to output the script in a separate bundle you can use global-scripts like:
"scripts": [
{ "input": "../node_modules/module-name", "output": "module-custom-name", "lazy": true}
],
When you specify "lazy": true
cli will create a separate file that will contain just your module you want to load conditionally.