Closed abeluzhenko closed 1 year ago
Typescript path resolution was fixed for the paths which contain nested directories, e.g: import {foo} from "shared/utils/foo"
import {foo} from "shared/utils/foo"
TS config alias: "shared/*": ["core/shared/*"]
"shared/*": ["core/shared/*"]
path.dirname returns shared/utils for the example import part, hence it wasn't properly resolved and was marked as "third-party" module.
path.dirname
shared/utils
Typescript path resolution was fixed for the paths which contain nested directories, e.g:
import {foo} from "shared/utils/foo"
TS config alias:
"shared/*": ["core/shared/*"]
path.dirname
returnsshared/utils
for the example import part, hence it wasn't properly resolved and was marked as "third-party" module.