The entry-point file name is hard-coded here :
|
return M.join_paths(debugger_path, "out/src/vsDebugServer.js") |
But it may change depending on the version and installation tool used. For my case, I installed js-debug-adapter using mason and the bin path is defined here.
What do you think of making the file path out/src/vsDebugServer.js also configurable just like debugger_path so it can be changed as needed for other installation processes?
The entry-point file name is hard-coded here :
nvim-dap-vscode-js/lua/dap-vscode-js/utils.lua
Line 53 in 03bd296
But it may change depending on the version and installation tool used. For my case, I installed
js-debug-adapterusing mason and the bin path is defined here.What do you think of making the file path
out/src/vsDebugServer.jsalso configurable just likedebugger_pathso it can be changed as needed for other installation processes?