I believe I\'ve set everything up correctly, but I\'m getting an odd issue with Webpack.
Consider this simple app.ts
file:
\'use strict\
The problem is that jQuery UI normally automatically pulls in the components it needs (which is why it works when it's linked via a CDN), but that doesn't work when it's imported as a module (like with Webpack).
Thankfully as of jQuery UI 1.11 you can manually pull in any extra components you need like so:
'use strict';
import $ = require('jquery');
require('jquery-ui');
require('jquery-ui/ui/widgets/sortable');
require('jquery-ui/ui/disable-selection');
etc.
Here's some official documentation explaining this further.