Angular2 SystemJs Bundles and Non Bundled js
问题 I'm new to SystemJs and Angular2. I am using 3rd party packages, some of which have bundles/code.js files and some do not. The ones that are using bundles/code.js I have managed to get working. I include <script src=foo/bundles/code.js> and am then able to import * from 'code/foo' inside my ts files. This all makes sense to me as the bundles/code.js has something like System.registerDynamic("code/foo",...) and so the import knows what code/foo is (This is my understanding of it) I have come