I have an App1 created by angular-CLI and distributed to a C# project like so. C:...\CSharpProj1\AngularApp1\dist
I created another App2 using CLI. I would like to distribute the transpiled js to C:...\CSharpProj1\AngularApp2\dist
I would like to boostrap both apps in a single C# .cshtml page at the same time, and need App2 emit an event to be handled by App1. I am doing this because we have several developers maintain different CLI projects. I don't want to merge their project source into my project source, nor vice versa. In other words, I don't want to copy source code from one project to anther. The TypeScript source code needs to remain in its original CLI project, no merging two CLI projects into one.
Is this possible? Thanks.