Is there a way to dynamically load a Javascript language bundle file in Typescript based on the current language without using static methods?
I want to avoid having to use comments like this for each bundle:
/// <amd-dependency path="<path_to_bundle>"/>
Converting JS resource bundles into TypeScript classes with static object properties seems labor-intensive. Are there alternative solutions?
How can I ensure that a JS module is loaded before my TS class executes without facing any limitations while using TypeScript?
Thank you, Peter