Jason Stone
Jason Stone
Ok, it's hard for me to be sure without seeing the full layout of your project but the first thing I notice is that your 404 error doesn't include '/base/'...
Sorry for the late reply. TLDR; If you want to just serve (like web server) files, put them under `systemjs.serveFiles` and they will map to `http://localhost:$port/base/$pathRelativeToBasePath` If you want to...
I personally haven't had any success with Typescript and code coverage. Part of the problem being that Istanbul (the tool which instruments the code to track it's coverage) needs to...
You're right, it is very custom behavior for Karma. But it felt like the least-surprising approach for users. All the standard Karma configuration tells you to put your file globs...
Sounds great. I'm more than happy to talk through ideas, look through your progress, and merge in changes once they're ready to go. Whatever gives us a better plugin.
Looks great. I'll test it out when I get home from work tonight (6:30am right now in Sydney) and give you some user feedback. If you want to send me...
I had a go with using your plugin against a repo I'm currently playing with: https://github.com/rolaveric/ng1-to-ng2-example/tree/karma-systemjs-experiment I couldn't include the repo as an npm dependency (Something missing from the package.json...
I've never used it myself, but does `bundle` property in the SystemJS config help? https://github.com/systemjs/systemjs/blob/master/docs/config-api.md#bundle The biggest pain is that you need to list out the modules included in the...
Wow, ok. I always assumed the baseURL was only ever used when retrieving modules from the server. Once they were retrieved (eg. Run through System.register()), I assumed the baseURL was...
Hi @richburdon Your issue isn't related because it doesn't look like you're using [bundles](https://github.com/systemjs/systemjs/blob/master/docs/production-workflows.md#bundle-extension) anywhere. You can still use `paths` for `files`, you just need to understand that `files` paths...