I am getting this error "Uncaught ReferenceError: $ is not defined" please find my code below.
///<reference path="jquery.d.ts" />
class Test {
    name: string;
    constructor() {
        this.name = "gowtham";
    }
    dispname() {
        alert("Name :" + this.name);
    }
}
$(document).ready(function () {
    debugger;
    var test = new Test();
    $('#test').on('click', function() {
        debugger;
        test.dispname();
    });
});
i am having the referance too reference path="jquery.d.ts" in my .ts file. Am i missing anything here .?


d.tsfile is in the same path?