Simplify Typings Installation


Summary of my bookmarked Github repositories from Oct 26th, 2020

Github repositories

  • jeffijoe/typesync

    TypeSync is a tool that installs missing TypeScript typings for dependencies listed in your package.json. You can use it directly with npm or npx. The tool modifies your package.json file, but you still need to run npm install or yarn afterward. There are additional options such as --dry for printing added/removed typings without modifying the file, --ignoredeps to ignore specific sections like devDependencies or peerDependencies, and --ignorepackages to ignore specific packages. TypeSync also supports monorepos, syncing matching files in one go. It simplifies the process of installing typings and brings TypeScript closer to flow-typed's functionality.