I have imports like this:
import { some } from '@namespace/pkg/some/other';
The package has proper index file now, so I want to change all imports to:
import { some } from '@namespace/pkg';
There are many imports to change. Can I automate this using VsCode or something else?