mirror of
https://github.com/privacy-scaling-explorations/emp-wasm.git
synced 2026-01-09 01:57:54 -05:00
33 lines
979 B
JSON
33 lines
979 B
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "tsx",
|
|
"type": "node",
|
|
"request": "launch",
|
|
// Debug current file in VSCode
|
|
"program": "${file}",
|
|
/*
|
|
Path to tsx binary
|
|
Assuming locally installed
|
|
*/
|
|
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/tsx",
|
|
/*
|
|
Open terminal when debugging starts (Optional)
|
|
Useful to see console.logs
|
|
*/
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen",
|
|
// Files to exclude from debugger (e.g. call stack)
|
|
"skipFiles": [
|
|
// Node.js internal core modules
|
|
"<node_internals>/**",
|
|
// Ignore all dependencies (optional)
|
|
"${workspaceFolder}/node_modules/**",
|
|
],
|
|
}
|
|
]
|
|
} |