I have a vue file
// myComponent.vue
import { something } from 'some-module'
...
I want to replace this import statement into
import { something } from '@/utils/myModule'
in case when running the vitest command. Do we have some plugin which I can use to get the above result?