-
Notifications
You must be signed in to change notification settings - Fork 41
Closed
Labels
1 - RequestA request made by a member of the communityA request made by a member of the communitytype:housekeepingCode cleanup and refactoringCode cleanup and refactoring
Description
- Update to newest version of typescript and review changes (for breaking changes or interesting new features)
- Use new typescript features (i.e,
satisfieskeyword) - Look for new useful tsconfig options
- Remove all usages of any. If absolutely necessary, consider using "unknown" instead. Can find implicit any's using
type-coveragenpm package - Reduce usages of
name?: type. Usename: type | undefinedinstead - where appropriate - this way you won't accidentally forget to provide an important attribute - Rename RA<> to A<>. Create a type S<> for ReadonlySet<>. Create a type R<> for Readonly<> and the rest
Metadata
Metadata
Assignees
Labels
1 - RequestA request made by a member of the communityA request made by a member of the communitytype:housekeepingCode cleanup and refactoringCode cleanup and refactoring
Type
Projects
Status
✅ Done