how to add make touchstart passive in jquery "3.4.0"

JavaScript
jQuery.event.special.touchstart = {
            setup: function (_, ns, handle) {
                this.addEventListener('touchstart', handle, { passive: !ns.includes('noPreventDefault') });
            }
        };
        jQuery.event.special.touchmove = {
            setup: function (_, ns, handle) {
                this.addEventListener('touchmove', handle, { passive: !ns.includes('noPreventDefault') });
            }
        };
Source

Also in JavaScript: