Open gracebrack opened 5 months ago
@lwc/lwc/no-unsupported-ssr-propertiesdoes not recognize when there is a multi conditional check with !import.meta.ev.SSR.
@lwc/lwc/no-unsupported-ssr-properties
!import.meta.ev.SSR
Example: This will have an error even though it has the correct check in place
if (!import.meta.ev.SSR && randomOtherCheck ) { this.dispatchEvent(someEvent); }
@lwc/lwc/no-unsupported-ssr-properties
does not recognize when there is a multi conditional check with!import.meta.ev.SSR
.Example: This will have an error even though it has the correct check in place