If you build your executable with the --debug flag, you can inspect the virtual filesystem and symlink table at runtime. This is useful for verifying that all required files and symlinks were correctly incorporated into the executable.
To trigger the display of the filesystem content, set the DEBUG_PKG environment variable to 1 when running the output executable.
```bash
# Build with debug enabled
$ pkg --debug app.js -o output
# Run the output with DEBUG_PKG set
$ DEBUG_PKG=1 ./output
Note: Do not use the --debug flag in production environments.