I just found why so many people have been getting errors with Angular. According to the docs, you should import modules like this. import Draggable from "gsap/Draggable"; import ScrollToPlugin from "gsap/ScrollToPlugin";   But doing that will result in an error for most TypeScript builds. The problem is that GSAP doesn't use ES6 modules, and exports a default in a CommonJS (CJS) format like this. module.exports = Draggable;   That works fine for CJS, but there is no way t
    • Like
    1