Is it possible to use JavaScript libraries in TypeScript?
For example I want to use Raphael in TypeScript and added the JS files in my /scripts folder and added them to _references.js.
But when I want to declare in my TS file:
var r = Raphael(10,50,640,480);
Intellisense always says:
Raphael does not exist in the current scope.
and the TS file does not compile.
