You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Address a large majority of the TS type errors in the debugger code. The
only actual change to the runtime logic is the following:
When adding a new breakpoint to a file that has a source map, we now
validate that the generated position can be identified. If not, we abort
and don't add the breakpoint (which most likely would have failed
anyway). An error will be sent to the debugger diagnostics endpoint if
that happens.
Another minor, but hopefully invisible change, is that all private
fields in the `JSONBuffer` class are now properly private instead of
just being prefixed with an underscore.
The only debugger TS errors not addressed in this commit are the following:
- The ones already addressed in #6965
- The ones which will disappear once
#6951 lands
This commit also adds a `tsconfig.debugger.json` file, which can be used
to check the types of the debugger code:
./node_modules/.bin/tsc --noEmit -p tsconfig.debugger.json
0 commit comments