Check the scrict property in the tsconfig.json file
it should be true to get the errors:
"strict": true, // Enables all strict type-checking options
Try to set the type of title property to title: string | undefined, when you set direct in the property name the field is optional –