We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test for #5645:
For improving the stepping experience for programs with lots of local variables, we've made the following adjustments:
Verify that the following use case from the TypeScript transpiler works smoother:
launch.json
Verify that stepping is reasonable fast.
{ "version": "0.2.0", "configurations": [ { "name": "Launch", "type": "node", "request": "launch", "program": "${workspaceRoot}/src/compiler/tsc.ts", "args": ["<<<PATH TO ANY TS FILE>>>"], "cwd": "${workspaceRoot}", "runtimeArgs": [ "--nolazy" ], "sourceMaps": true, "outDir": "${workspaceRoot}/built/local" } ] }
If this works for you please add the VERIFIED label to #5645.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Test for #5645:
For improving the stepping experience for programs with lots of local variables, we've made the following adjustments:
Verify that the following use case from the TypeScript transpiler works smoother:
launch.json
. Please notice that you replace <<>> with a valid path.Verify that stepping is reasonable fast.
If this works for you please add the VERIFIED label to #5645.
The text was updated successfully, but these errors were encountered: