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
Actually I'm having one other problem directly related to the lang server: I get TS 2304 errors in this scenario:
<template lang="pug">
main
h1 Trillium
section
h2 Lobby
pre { lobbyUsers }
+each('lobbyUsers as user')
li { user } // <--------------- [ts 2304] [E] Cannot find name 'user'.
</template>
@sevensidedmarble there are a number of related issues that are likely the cause here. Unfortunately, they are upstream so should be taken to the maintainers of the other repos. Once the fixes are made there, comment back here if updates that resolve the issue have been made and need to be brought back here
This kinda thing is supported in
svelte-preprocess
:It currently works in VSCode. But unfortunately not in this extension. Any idea how to make it work?
The text was updated successfully, but these errors were encountered: