You can install all the special plugins through npm... https://stackoverflow.com/questions/10386310/how-to-install-a-private-npm-module-without-my-own-registry   It can be as simple as a local folder.      Create a package.json for it. { "name": "gsap", "version": "1.19.1", "main": "./TweenMax.js" }   Now you can import like this with Babel. import { TweenMax } from 'gsap' import CustomEase from 'gsap/CustomEase'   With TypeScript
    • Like
    3