Revision 3a29c57f6049726fd54557b9ebc0788f35317b80 authored by Paul Gschwendtner on 15 December 2021, 18:31:20 UTC, committed by Dylan Hunn on 04 January 2022, 20:14:14 UTC
Updates the size goldens to the reflect the latest CLI devkit updates.

PR Close #44490
1 parent 7974564
Raw File
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,
    "devmodeTargetOverride": "es5"
  }
}
back to top