I had to add paths compiler option to the tsconfig.app.json file instead of the tsconfig.json file for my IDE to recognize.
"paths": {
"src/*": [
"./src/*"
],
}
Along with the resolve config for vite.config.ts file.
resolve: {
alias: {
src: '/src',
},
},