Open Raynos opened 4 years ago
Our web components do not extends HTMLElement directly in their implementation
extends HTMLElement
Instead they extends Tonic and tonic extends HTMLElement
extends Tonic
I added @element ${name} to one of my web components and the analyzer was able to find it.
@element ${name}
Would it be possible for the analyzer to be able to find that it does inherit from HTMLElement via base class ?
HTMLElement
Alternatively I'm happy to configure the analyzer with wca analyzer --super Tonic as a hint.
wca analyzer --super Tonic
Our web components do not
extends HTMLElement
directly in their implementationInstead they
extends Tonic
and tonicextends HTMLElement
I added
@element ${name}
to one of my web components and the analyzer was able to find it.Would it be possible for the analyzer to be able to find that it does inherit from
HTMLElement
via base class ?Alternatively I'm happy to configure the analyzer with
wca analyzer --super Tonic
as a hint.