Results 23 comments of Ivan

Unfortunately it's not currently possible. I'll probably add this feature to the next release.

Add those to you `launch.json`: ```json "verboseDiagnosticLogging": true, "diagnosticLogging": true ``` Then run it again and copy the output here.

@jamesliu668 which version of PhantomJS are you using ?

Thank you for filing this. There are couple of things that need to be fixed before we can try to resolve this. One is related to this debugger but the...

I'm aware that many people are using PhantomJS for testing so it might be good idea to write something like that in the future. Since I'm not using your setup...

You can use `phantomjs-prebuilt` since it uses PhantomJS version `2.1.1` I believe it installs executable in `node_modules/phantomjs-prebuilt/lib/phantom/bin/` so if you want to use that executable to debug PhantomJS JavaScripts you...

It is possible to debug TypeScripts but your entry-point (`"file:"` parameter) has to be JavaScript file, in your example `test/entry.js`. Also there is a limitation that all your `js` and...

Your image is saved in *current working directory* (*cwd*) which is unexpectedly not the one where your script nor PhantomJS executable sits in. It depends on where `VSC` was installed,...

I tested with the Alpine image without issues whatsoever: ``` FROM node:18-alpine RUN apk --no-cache add \ bash \ g++ \ ca-certificates \ lz4-dev \ musl-dev \ cyrus-sasl-dev \ openssl-dev...