After researching different Q/A threads, I found a method for incorporating external libraries in TypeScript. Following the recommendations, I successfully registered BT alert to an element using the following code snippet:
import * as $ from "jquery";
import * as bootstrap from 'bootstrap';
window["$"] = $;
window["jQuery"] = $;
$("#clientAlert").alert();
Everything worked flawlessly.
Now, I am facing a similar challenge with JQuery-Ticker.
import * as jqueryTicker from "jquery-ticker";
$('.newsticker').ticker();
During the WebPack build process, I encountered this error message:
error TS2339: Property 'ticker' does not exist on type 'JQuery'.