ngrev
ngrev copied to clipboard
Error while parsing project
@Directive({
selector: 'cdk-virtual-scroll-viewport[tableData]',
providers: [
{
provide: VIRTUAL_SCROLL_STRATEGY,
useFactory: (scroll: TableFixedSizeVirtualScroll) => scroll.scrollStrategy,
deps: [forwardRef(() => TableFixedSizeVirtualScroll)]
}
]
})
export class TableFixedSizeVirtualScroll<T = any> implements OnInit, OnChanges, OnDestroy {
}
I faced the same issue. I suspect this is related to custom "baseUrl": "src"
in tsconfig.json
@cwayfinder did you resolve the issue after updating baseeUrl
?
@mgechev yes
I can't seem to be able to solve this one. Switching baseUrl to the default './' does not help. Can't really share the code either since it's a project at work :/
It might be related to #50. I do have custom paths defined in tsconfig.json