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
Normally since TS 3.7 with strictNullCheck: true, VSCode would behave like this when autocompleting a property of a maybe undefined object (in a TS file), and activated by the setting typescript.suggest.includeAutomaticOptionalChainCompletions
However in a .vue file, this behaviour is happening
post is of type Post | undefined, so it would normally add the ?., but it even removes the .
The text was updated successfully, but these errors were encountered:
Info
Problem
Normally since TS 3.7 with
strictNullCheck: true
, VSCode would behave like this when autocompleting a property of a maybe undefined object (in a TS file), and activated by the settingtypescript.suggest.includeAutomaticOptionalChainCompletions
However in a
.vue
file, this behaviour is happeningpost
is of typePost | undefined
, so it would normally add the?.
, but it even removes the.
The text was updated successfully, but these errors were encountered: