Hey yall, I found out about the typescript API recently and is playing around with making my own transformer and I hit a roadblock. Basically, I want to change the name of the module something is imported from. For example:
// input
import Foo from "bar"
// output
import Foo from "world"
I could not really find a good resource for it. Could anyone point me in the correct direction?