Skip to content

v0.14.0

Latest
Compare
Choose a tag to compare
@trusktr trusktr released this 02 Oct 21:02

What's Changed

  • Stricter type checking by @trusktr in #21

    make type checking stricter by enabling noImplicitOverride and noUncheckedIndexedAccess tsconfig options.

    BREAKING: This may cause some type errors and code will need to be adjusted. In many cases the fixes are simple: prepend override to class members affected by noImplicitOverride, or add a non-null assertion (!) on expressions affected by noUncheckedIndexedAccess if not a better conditional check.

Full Changelog: v0.13.1...v0.14.0