After blindly changing things, I came across a configuration that seems to work. Here is my configuration:
System.config({ defaultJSExtensions: true, paths: { jquery: './scripts/lib/jquery-2.2.0.min.js', bootstrap: './scripts/lib/bootstrap.min.js' }, meta: { bootstrap: { deps: ['jquery'] } } }); System.import('./scripts/app.js');
I think the key has changed from map to paths .
EDIT
Side note: learning a bit more about SystemJS, I found it much easier for jspm to do the hard work of managing my SystemJS configuration.
source share