File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/node_modules/strnum/.vscode

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

launch.json742 B · 25 lines
{    "version": "0.2.0",    "configurations": [        {            "type": "node",            "request": "launch",            "name": "Jasmine Tests",            "program": "${workspaceFolder}/node_modules/jasmine/bin/jasmine.js",            "args": [                "${workspaceFolder}/spec/attr_spec.js"            ],            "internalConsoleOptions": "openOnSessionStart"        },{            "type": "node",            "request": "launch",            "name": "Jasmine Tests current test file",            "program": "${workspaceFolder}/node_modules/jasmine/bin/jasmine.js",            "args": [                "${file}"            ],            "internalConsoleOptions": "openOnSessionStart"        }    ]   }