I've got 2 different Typescript projects. One is an Angular project and another a separate Typescript project for generating Javascript files.
I noticed when I import a single Enum from the Angular project, the Typescript compiler will include ALL of the Angular project into the other Typescript project, which is obviously not what I want. I just want the enum.
Is what I'm trying to do plausible? ^
Otherwise I will just do what I probably should do anyway...put that enum into another module.