I have a typescript library that uses 3rd party imports. I want to compile the typescript to vanilla js. However when trying that, the compiled javascript code has the keyword "exports". If I am trying to import that in a legacy angularjs application, it does not know what an exports is. Is there a way to compile the typescript into pure vanilla js without any dependencies?
Tried using webpack.