We have a project which is an independent collection of javascript controls. We use typecript in this project and have enabled "Combine JavaScript output into file". As you can imagine this eventually compiles to a rather large JS file.
We then have a separate project where our app resides - it references some of the controls in the above project via the JS file.
My question is this: what is the best way to include only the controls we need in our project in such a way so as to contain the size of the JS file. We only want to include JS for controls we need. Am I forced to "not combine" and include individual JS - or is there a better way to independently combine "specific" typescript files into one file.