See the two typebox schemas generated by the cli. On the left, it's a 'custom' messages service that I created with feathers g service. On the right it's the default users service that got created by feathers g app:

See the difference between the namings. In almost every variable name it's plural (left) vs. singular (right):
messagesSchema vs userSchema
$id: 'Messages' (plural) vs. $id: 'User' (singular)
export type Messages vs. export type User
messagesResolver...
We should make it singular by default, right? Popular solutions:
See the two typebox schemas generated by the cli. On the left, it's a 'custom'

messagesservice that I created withfeathers g service. On the right it's the defaultusersservice that got created byfeathers g app:See the difference between the namings. In almost every variable name it's plural (left) vs. singular (right):
messagesSchemavsuserSchema$id: 'Messages'(plural) vs.$id: 'User'(singular)export type Messagesvs.export type UsermessagesResolver...We should make it singular by default, right? Popular solutions: