/system-coffee

SystemJS plugin for compiling CoffeeScript

Primary LanguageHTML

system-coffee

SystemJS plugin for compiling CoffeeScript

jspm install coffee

In config.js:

System.config({
  map: {
    coffee: "system-coffee"
  }
});

In your app:

System.import('./test.coffee!')
  .then(function (test) {
    var t = new test('Test');
    console.log(t);
  })