xxxxxxxxxx
// You're facing this error because @types/... is a global import. For example import { AuthKeyT } from '@types/app' means your're trying to import from @types that is in node_modules.
// You can fix this by changing @types to something like @customTypes or by changing the path for your types folder something like @src/types... while importing.