urql-graphql / urql-devtools

A tool for monitoring and debugging urql during development
https://formidable.com/open-source/urql/docs/advanced/debugging/#devtools
MIT License
257 stars 11 forks source link

Fix typescript and add type check step to CI #290

Closed Rigellute closed 4 years ago

Rigellute commented 4 years ago

There were 200+ typescript errors in the codebase.

The vast majority of the errors (~150) were caused by type errors in our libraries. To fix this I've needed to set skipLibCheck: true in tsconfig.

The rest were all in our domain, which are now fixed.

To prevent errors from creeping back in, I've also added the type check step to CI.