https://github.com/angular/angular
Raw File
Tip revision: 6928618fd75a7b34a5fa5e43a42d21c8a96e9903 authored by Alex Rickabaugh on 01 May 2023, 17:25:36 UTC
release: cut the v16.0.0-rc.4 release
Tip revision: 6928618
tsconfig-test.json
/**
 * Root tsconfig file for use in all tests.
 */
{
  "extends": "./tsconfig-build.json",
  "compilerOptions": {
    "types": ["node", "jasmine"],
    "plugins": [{
        "name": "@bazel/tsetse",
        "disabledRules": ["must-use-promises"]
    }]
  },
  "bazelOptions": {
    "suppressTsconfigOverrideWarnings": true
  }
}
back to top