I'm fairly new to Typescript and I'm excited to use it for an upcoming JavaScript project. The modularity features that Typescript provides will make maintaining and developing the project much easier. I've organized each class in its own ts file and imported them all into the main.ts file. To compile them all into a single js file, I used the --outFile flag. However, my goal is to compile everything into one js file and easily link it to an HTML document without needing to import additional js files like require.js. Is there a way to achieve this without adding extra scripts to the HTML document? If not, could you please suggest an alternative method? My aim is to consolidate everything into a single file similar to jquery.js.