In AMD (as implemented in requirejs) one can defined modules to be included as dependencies, eg:
define(['require','exports'], function(require, exports) {
var externalDep = require('path/to/depModule');
// Use the module somewhere.
});
I have tried the --module amd and it outputs correctly an AMD module usable by requirejs.
Is it possible to define dependencies inside the source of TypeScript source file that translates to something like the example above?
You need to "export" your modules;
export module depModule {
export class A {
}
}
that will transalate into JavaScript code that looks like:
define(["require", "exports"], function(require, exports) {
(function (depModule) {
var A = (function () {
function A() { }
return A;
})();
depModule.A = A;
})(exports.depModule || (exports.depModule = {}));
})
and then you consume them by using "import":
module otherModule {
import depModule = module('depModule');
var a = new depModule.depModule.A();
}
you will need to specify the type of your module code generation to the compiler using --module AMD.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With