Ok a general linting be…
Ok, a general linting/best practices question - when in a library and importing an exposed service in the same library do you use the @org/my-library
type import or a relative import ../services/
?
Responses:
I always use relative path because otherwise you’ll get a circular dependency warning.
I use relative paths within the lib and the @…/..
when outside.