Revision 22eebbafbccbf35b6f7bff1a99a7333b8fa5ff2f authored by Alex Rickabaugh on 27 September 2021, 17:24:21 UTC, committed by Alex Rickabaugh on 27 September 2021, 17:27:54 UTC
1 parent 9d290bd
Raw File
tsconfig-legacy-saucelabs.json
{
  "extends": "./tsconfig.json",
  "compilerOptions": {
    // The project uses Bazel for TypeScript compilation. Unlike with Bazel, we build all
    // sources as part of a single TypeScript compilation. This results in `@internal`
    // declarations not being omitted between the logical as defined per the Bazel targets.
    // This can cause issues where the `override` keyword is needed for the legacy TS
    // compilation, but not within Bazel where the overridden member has `@internal`.
    "noImplicitOverride": false,
  }
}
back to top