I'm trying to migrate an Angular CLI app to Nx. My main goal is to turn my entire app into a big nx project and after that gradually split it into small remote apps and shared libs
A execute the command ng add @nrwl/workspace and it moves my application to the apps//src, created nx.json, created prettier config files... I think everything went well, however, my components into the apps folder don't find any file path.
I already have created a path into tsconfig.base.json, but components still can not find the file path. Is there any config that I missed?
tsconfig.base.json
"paths": {
"@bulk-components/*": [
"apps/portal-alelo-auto/src/app/shared/components/bulk/*"
]
Component example app/portal-alelo-auto/src/app/quick-search/card-detail/reissue/reissue.component.ts
import { CustomerType } from 'src/app/shared/enum'; //
import { MessageModule } from '@bulk-components/shared/message/message.module';