Handlebars template loader plugin for system.js
jspm install hbsYou can now import your .hbs files as such:
'use strict';
import {ItemView} from 'marionette';
import template from './myTemplate.hbs!';
export default ItemView.extend({
template,
initialize() {}
});Head over to https://github.com/davis/jspm-marionette to see a working example that uses this plugin.