Looking at the demo, https://github.com/payloadcms/public-demo I see a lot of imports like this
import MediaContent from '../../blocks/MediaContent';
import populateFullTitle from './hooks/populateFullTitle';
import MediaSlider from '../../blocks/MediaSlider';
I tried to use aliases by modifying the tsconfig file https://github.com/payloadcms/public-demo/blob/master/tsconfig.json
but getting error, has anyone been able to use aliases path?
Idealy importing like this
import MediaContent from '@/blocks/MediaContent';