Nest JS Module aliasing using module-alias
A Simple Way To Use Path Aliases in NestJS
I am talking about this
Original:
import CatModule from '../../cat/cat.module.ts'
Alias Path:
import CatModule from '@/cat/cat.module.ts'
whenever we write code most of teh times we end up using whole path...
articles.tkssharma.com4 min read