I need to do an ajax call from node server using TypeScript.
I am importing jquery as below to my class
import * as $ from "jquery"
if I hover over my implementation, it recognizes the ajax as below
Then, I compile this TypeScript to JavaScript. It is successful.
If I host the node server and try to access this function I am getting below error
TypeError : $.ajax is not a function.
I think I am missing something. I am unable to figure the things out.
