We have thought a workaround but we don't know if it's optimal.
$('a').on('touchstart', function(){
ScrollTrigger.normalizeScroll(false);
setTimeout(function(){
ScrollTrigger.normalizeScroll(true);
ScrollTrigger.refresh();
},400);
});
We would appreciate a feedback on it.