I'm getting an error when using TS aliased paths within the same project: Projects should use relative imports to import from other files within the same project
I don't want this behavior. Any idea how to disable?
I tried playing with the @nrwl/nx/enforce-module-boundaries
option, but it has almost no documentation around its options
// NX doesn't like this line which uses a path to a file within the
// same NX project. It wants me to use relative pathing, which I
// don't want to use
import { fooHandler } from '@handlers/foo';
import thing from '@proj/controllers/thing'
instead of:import thing from '../../../controllers/thing'
– Prodigious