ngrev icon indicating copy to clipboard operation
ngrev copied to clipboard

Error while parsing project

Open splincode opened this issue 6 years ago • 4 comments

image

@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 {
}

splincode avatar Dec 28 '18 07:12 splincode

I faced the same issue. I suspect this is related to custom "baseUrl": "src" in tsconfig.json

cwayfinder avatar Jan 10 '19 07:01 cwayfinder

@cwayfinder did you resolve the issue after updating baseeUrl?

mgechev avatar Jan 10 '19 17:01 mgechev

@mgechev yes

cwayfinder avatar Jan 30 '19 10:01 cwayfinder

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

DmitryEfimenko avatar Jun 30 '19 03:06 DmitryEfimenko