Zend certified PHP/Magento developer

Magento 2: How to disable swipe action in shopping cart page

I am trying to disable “swipe” by adding “swipe: false” in
app/design/frontend/vendor/default/Magento_Checkout/templates/cart/item/default.phtml

Here is my code, but it is not working, can anyone help?

    require(['jquery', 'jquery/ui', 'Magento_PageBuilder/js/resource/slick/slick'], function($) {
        $(document).ready(function() {
            $(".widget-product-carousel").slick({
                swipe: false
            });
        });
    });
</script>```