After extensive searches, I have not been able to find any information on this specific topic. In my Typescript Angular 2 application, I have configured my tooling to compile .ts files into JavaScript locally and then serve them to the browser.
Recently, I discovered that by including typescript.js and making some adjustments to System.config, I can skip compiling the .ts files locally and have transpilation occur in the browser at runtime.
My main concern is whether in-browser transpilation poses a performance issue as my application grows larger. It seems logical to believe so, but I am seeking feedback from those with experience using this setup.