I try to use IgGrid Ignite UI with Webpack but i have the flowing error :
TypeError: jQuery.ui is undefined
Despite i have the jquery and jquery_ui in my package.json
I found a solution to build jquery thanks to:
new webpack.ProvidePlugin({
jQuery: 'jquery',
$: 'jquery',
jquery: 'jquery'
})
but not Jquery-ui