I know that VS code can auto-update the import statements of the moved file using updateImportsOnFileMove, but I'd like for VS code to update the dependents of the moved file as well. Is such a thing possible?
Example:
myfile.js exists in /src/, but I'd like to move it to /src/models/. If I do so, myfile.js will go from
import WhoCares from './whocares.js';
to
import WhoCares from '../whocares.js';
However, I'd like for the dependents of myfile.js to also be updated, i.e. mydependent.js
import MyFile from './myfile.js';
to
import MyFile from './models/myfile.js';
Is such a thing possible?