This is clearly a tsconfig.json issue. add this to your config file. you could have src/* or app/* in you codebase, check that.
tsconfig.json
src/*
app/*
"compilerOptions": { "baseUrl": ".", "paths": { "@/*": ["src/*", "app/*"] }, ... }