Support full featured glob patterns instead of trivial cases like @utils/* and src/utils/*.
Currently paths like src/foo/*/bar will not work, because code actually expects that paths will ends on /*. It's fine, because this is most used case for paths configuration, but we may have edge cases.
Also add tests with config where aliases will be something like @foo and paths will be something like src/foo/*/bar, src/bar/**/baz
Support full featured glob patterns instead of trivial cases like
@utils/*
andsrc/utils/*
.Currently paths like
src/foo/*/bar
will not work, because code actually expects that paths will ends on/*
. It's fine, because this is most used case for paths configuration, but we may have edge cases.Also add tests with config where aliases will be something like
@foo
and paths will be something likesrc/foo/*/bar
,src/bar/**/baz