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

Add support for extends as array of strings. #245

Merged
merged 2 commits into from Mar 29, 2023
Merged

Add support for extends as array of strings. #245

merged 2 commits into from Mar 29, 2023

Commits on Mar 20, 2023

  1. Add support for extends as array of strings.

    TypeScript 5.0 added support for defining "extends" as an array of
    strings. This commit adds support for this use case.
    
    It's important to note that even with this change, "baseUrl" and
    "paths" are still always being completely overwritten if a later
    tsconfig redefines any of those values.
    This might be confusing because a tsconfig may define
    "baseUrl=value1" and its own set of "paths" based on that baseUrl,
    but if a later tsconfig defines its own "baseUrl=value2", the
    overall config ends up becoming "baseUrl=value2" with the "paths"
    from the first config.
    
    This behaviour hasn't changed even when "extends" is an array of
    strings, so this commit maintains this behaviour.
    DanielSidhion committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    540a1c1 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2023

  1. Configuration menu
    Copy the full SHA
    62c1b80 View commit details
    Browse the repository at this point in the history