I am in the process of transitioning a complex JavaScript application from Backbone/Marionette to TypeScript.
While making this shift, I want to explore the benefits of exporting and importing classes using files as modules.
Is it necessary to incorporate something like RequireJS for this purpose? I was hoping to focus on mastering TypeScript first before tackling the additional work required to make my app compatible with RequireJS.
So, is there a way to utilize file modules in TypeScript without having to integrate RequireJS into the application?
Thank you for your assistance!