Revision 7467fd36b902e29fbfa18b99dc5a37140a94b4a3 authored by JiaLiPassion on 30 June 2020, 21:11:14 UTC, committed by Misko Hevery on 24 July 2020, 22:22:48 UTC
Close #37333

`clearTimeout` is patched by `zone.js`, and it finally calls the native delegate of `clearTimeout`,
the current implemention only call `clearNative(id)`, but it should call on object `global` like
`clearNative.call(global, id)`. Otherwise in some env, it will throw error
`clearTimeout called on an object that does not implement interface Window`

PR Close #37858
1 parent aca0198
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