Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update TypeScript to the latest stable version #124

Merged
merged 2 commits into from Nov 8, 2022
Merged

Commits on Nov 8, 2022

  1. Update TypeScript to the latest stable version

    TypeScript has been updated to the latest stable version. Additionally,
    the version range has been updated to use `~` because TypeScript does
    not follow SemVer (they make breaking changes as minor updates).
    
    The configuration has been updated to match the module template, except
    that two options (`exactOptionalPropertyTypes` and
    `noUncheckedIndexedAccess`) have been omitted temporarily to reduce the
    number of changes required for this update. They can be added in later
    PRs.
    
    Just as in the module template, a separate `tsconfig` file has been
    created to distinguish build settings from settings used to compile
    unit tests.
    
    The one configuration difference is the compilation target. The target
    is ES2019 here because this is a developer tool, so we don't need to
    stick to ES2017 for browser compatibility.
    
    [1]: https://devblogs.microsoft.com/typescript/announcing-typescript-4-8/
    Gudahtt committed Nov 8, 2022
    Configuration menu
    Copy the full SHA
    e3641f9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d16296b View commit details
    Browse the repository at this point in the history