Closed Rigellute closed 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.
skipLibCheck: true
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.
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
intsconfig
.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.