SpacetimeDB icon indicating copy to clipboard operation
SpacetimeDB copied to clipboard

Added 'override' keywords to functions and properties extending from …

Open hsreina opened this issue 11 months ago • 1 comments

What version of TypeScript are you targeting?

Since version 4.3 of TypeScript, override keyword has been introduced for properties or functions of classes extending from other classes.

Recent frameworks using Typescript might enforce the presence of the override keyword.

Of course implicit in projects can be disabled with the follow code. But I think it might be better to have it.

{
  "compilerOptions": {
    // ...
    "noImplicitOverride": true
  }
}

hsreina avatar Mar 13 '24 04:03 hsreina