define(["require", "exports", "js/models/home","templates/home/home.html"
], function(require, exports, __model__, __homeView__) {
var model = __model__;
var homeView=__homeView__;
}
I would like to write a .ts file which will generate a js file like this.
By compiling --module amd I can import a model and also reference the jquery, backboneJs or any other js files.
But how can I import an externer html file as like requireJs does?