Unfortunately not, because it’s necessary for the internal logic.
However, you can add a global handler that fires in the capturing phase (before):
document.addEventListener('mousedown', (ev) => {
console.log("global mousedown, capture");
}, { capture: true });