Are there any tools or forks of TypeScript to support public namespace obfuscation? I.e. to turn:
class MyUtil {
print(): void { ... }
}
Into something like:
class xxy {
aab(): void { ... }
}
If not, would be be straight forward to fork the compiler to provide this? Perhaps with some type of class annotation indication what should / shouldn't be obfuscated.
(Obviously public obfuscation has to be used carefully, no good for libraries! But great if used consistently across your project)