mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Previously, a race condition could cause DevTools to enter a state where it can't detect an application on reload. This was caused by a sequencing issue between the content script connection, the devtools panel connection and an event "backendReady" that lets DevTools know when a particular frame is ready to be inspected. This commit replaces the previously stored backendReady boolean with a promise, so that the devtools panel can eventually run a callback to connect to a content script when that content script emits it's backendReady message. PR Close #54805
15 lines
No EOL
260 B
JSON
15 lines
No EOL
260 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"plugins": [
|
|
{
|
|
"name": "@bazel/tsetse",
|
|
"disabledRules": [
|
|
"must-use-promises"
|
|
]
|
|
}
|
|
],
|
|
"sourceMap": false,
|
|
"types": ["jasmine", "node"],
|
|
}
|
|
} |