Skip to content

mattpocock/ts-reset

Repository files navigation

TS Reset - Improved TypeScript's Built-in Typings

Without ts-reset:

  • 🚨 .json (in fetch) and JSON.parse both return any
  • 🀦 .filter(Boolean) doesn't behave how you expect
  • 😑 array.includes often breaks on readonly arrays

ts-reset smooths over these hard edges, just like a CSS reset does in the browser.

With ts-reset:

  • πŸ‘ .json (in fetch) and JSON.parse both return unknown
  • βœ… .filter(Boolean) behaves EXACTLY how you expect
  • πŸ₯Ή array.includes is widened to be more ergonomic
  • πŸš€ And several more changes!

Official Docs

Check out our docs page on Total TypeScript