Hello, thanks for sharing the logs!
I don’t see anything suspicious here ![]()
I’m not familiar with Flatpak, but if I recall correctly, one of its goals is to package apps as isolated as possible from the base OS, so it is highly possible that the Flatpak’ed VSCode does not “see” the system’s Node runtime at /usr/bin/node.
I found a similar question on SuperUser about access to Node in a Flatpak’ed WebStorm, maybe you can take inspiration from there and:
- Run
flatpak install org.freedesktop.Sdk.Extension.node20 - Then add
FLATPAK_ENABLE_SDK_EXT=node20when running VSCode
Hope this helps!