I'm developing a VSCode extension which queries an Oracle database instance via oracledb npm
vscode-database extension was taken as a basis.
Node version installed is 8.9.4. Test script, which checks connection with Oracle works fine:
-> node -v
8.9.4
-> node connect.js
ok
But when I'm trying to debug the VSCode extension with the same connection script, I get error:
Activating extension bajdzis.vscode-database failed: NJS-045: cannot load the oracledb add-on binary for Node.js 7.9.0 (win32, x64)
The error says Node.js 7.9.0 is utilizing, not 8.9.4. I assume that 7.9.0 - is some internal Node instance which is used by VSCode debugger.
Is it possible make VSCode debugger to use Node version installed on a developer's machine, not the internal one?