I am trying to load jquery and jqueryUI from CDN in my typescript file, I have added typings for both
npm install --save @types/jquery@2
npm install --save @types/jqueryui
config.json look like this
In my type script file, I am trying to reference them with these lines
import * as $ from 'jquery'
import * as ui from 'jqueryui'
jquery is loading fine but jqueryUi is giving error
i can also see that both typings have been installed successfully



