I have added a jQuery plugin that I have created into a TypeScript file. For instance, let's say I have this:
Extensions.ts
(function ($)
{
$.fn.isNot = function (selector)
{
return !this.is(selector);
};
}(jQuery));
function HelloWorld()
{
}
As you can see, Utilities.ts can see the HelloWorld function but it cannot see the jQuery extensions...
However, when I try to reference this file by other files, it does not work. Is there a way of going about this so that I can create extension files like this in TypeScript and be able to reference them with other typescript files? Or will I have to create definition files for each of my extension files?
