I've been facing the same issue since version 0.76 (I believe?)
My workaround is just to add another entry for each of them within tsconfig.json
:
{
"compilerOptions": {
"paths": {
"@utils": [
"./src/utils/index"
]
"@utils/*": [
"./src/utils/*"
]
}
}
}