AMD を TypeScript と dojo AMD で使用する例はありますか? オブジェクトの代わりに "3" を取得し続ける (tslab == 3):
require( ["TypeScriptLab"], function ( tslab )
{
new tslab.Tests().run();
} );
TypeScript は次のようになります。
export class TypeScriptLab {
test() {
}
}
生成された JS は次のようになります。
define(["require", "exports"], function(require, exports) {
var TypeScriptLab = (function () {
function TypeScriptLab() { }
TypeScriptLab.prototype.test = function () {
};
return TypeScriptLab;
})();
exports.TypeScriptLab = TypeScriptLab;
})