Skip to content

Releases: seek-oss/tsconfig-seek

v2.0.0

25 May 01:02
0aa6861
Compare
Choose a tag to compare

Major Changes

  • Default noUncheckedIndexedAccess to true (#7)

    This change sets the noUncheckedIndexedAccess compiler option to true by default.

    This requires Typescript 4.1+

    This flags potential issues with indexed access of arrays and records.

    Before:

    const a: string[] = [];
    const b = a[0];
    //    ^? const b: string

    After:

    const a: string[] = [];
    const b = a[0];
    //    ^? const b: string | undefined

v1.0.2

17 Jan 05:18
5ea64a0
Compare
Choose a tag to compare

1.0.2 (2019-01-17)

Bug Fixes

v1.0.1

17 Jan 05:11
c500085
Compare
Choose a tag to compare

1.0.1 (2019-01-17)

Bug Fixes

v1.0.0

17 Jan 03:18
Compare
Choose a tag to compare

1.0.0 (2019-01-17)

Features

  • docs: Cleanup readme file (999b8c9)