Found an answer on this site here.
Step 1: Install both jquery and bootstrap
npm install jquery bootstrap
2: vendor.ts:
import 'jquery';
import 'bootstrap/dist/js/bootstrap';
3: wepback.common.js :
plugins:[
.....
..... ,
new webpack.ProvidePlugin({
jQuery: 'jquery',
$: 'jquery',
jquery: 'jquery'
})
]
jquery
, ES6, import