You can add --verbose to the shebang line:
#!/bin/bash --verbose
If you’re running this on Linux, because of the way the kernel handles shebang lines, you can only add one parameter in this way. In shell scripts you can control certains shell options using set; in this instance
#!/bin/bash
set -o verbose
blah
blah
(Although that will only show commands after the set line, whereas having --verbose in the shebang line shows all the commands, including the shebang.)