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
{{ message }}
This repository has been archived by the owner on Jan 4, 2023. It is now read-only.
In the actual runtime case, the first two lines aren't necessary and the syntax works as expected without them. However, VSCode sees that as an error claiming that pretty and actual were never defined when they're used during awaken.
The text was updated successfully, but these errors were encountered:
Hmm, this is because we run the typescript server with "suppressExcessPropertyErrors" set to false. Setting it to true will potentially hide actual important errors / typos so I just need to think about striking a decent balance. Maybe we could turn it on for tags only or something :)
@somebee interesting because if I define self and actual not in the return statement itself, then the properties resolve correctly. The problem with that is that every render then recreates both of those elements (which means my textarea gets rerendered every time the input is modified due to the binding updates).
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In the actual runtime case, the first two lines aren't necessary and the syntax works as expected without them. However, VSCode sees that as an error claiming that
pretty
andactual
were never defined when they're used duringawaken
.The text was updated successfully, but these errors were encountered: