I am developing a Chrome extension using Angular2-typescript. It is working already, but I am using a bunch of js scripts to make it work that I am not sure if they are too many.
Is there any documentation about it? These are the files I am coping
"copy1": "copy node_modules\\core-js\\client\\shim.min.js lib\\",
"copy2": "copy node_modules\\zone.js\\dist\\zone.min.js lib\\",
"copy3": "copy node_modules\\reflect-metadata\\Reflect.js lib\\",
"copy4": "copy node_modules\\systemjs\\dist\\system.src.js lib\\",
"copy5": "copy node_modules\\@angular\\core\\bundles\\core.umd.js lib\\",
"copy6": "copy node_modules\\@angular\\common\\bundles\\common.umd.js lib\\",
"copy7": "copy node_modules\\@angular\\compiler\\bundles\\compiler.umd.js lib\\",
"copy8": "copy node_modules\\@angular\\platform-browser\\bundles\\platform-browser.umd.js lib\\",
"copy9": "copy node_modules\\@angular\\platform-browser-dynamic\\bundles\\platform-browser-dynamic.umd.js lib\\",
"copy10": "copy node_modules\\@angular\\http\\bundles\\http.umd.js lib\\",
"copy11": "copy node_modules\\@angular\\router\\bundles\\router.umd.js lib\\",
"copy12": "copy node_modules\\@angular\\forms\\bundles\\forms.umd.js lib\\",
"copy13": "copy node_modules\\angular-in-memory-web-api\\bundles\\in-memory-web-api.umd.js lib\\",
"copy14": "robocopy node_modules\\rxjs lib\\rxjs *.js /E",
*article from which I end up with this list https://www.sitepoint.com/chrome-extension-angular-2/