You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of currently, the triple dots (*) are only supported and replaced at the end of a path string, e.g.: path('@/src/***') will be transpiled to path('@/src/**/*') and then processed.
Add support for triple dots in all parts within the string, e.g.: path('@/src/***.js') will be transpiled to path('@/src/**/*.js').
The text was updated successfully, but these errors were encountered:
As of currently, the triple dots (*) are only supported and replaced at the end of a path string, e.g.:
path('@/src/***')
will be transpiled topath('@/src/**/*')
and then processed.Add support for triple dots in all parts within the string, e.g.:
path('@/src/***.js')
will be transpiled topath('@/src/**/*.js')
.The text was updated successfully, but these errors were encountered: