Skip to content

Instantly share code, notes, and snippets.

@cgimenes
Created September 26, 2025 04:07
Show Gist options
  • Select an option

  • Save cgimenes/784f4ba53f45e98ce0e38ca776c34a21 to your computer and use it in GitHub Desktop.

Select an option

Save cgimenes/784f4ba53f45e98ce0e38ca776c34a21 to your computer and use it in GitHub Desktop.
Common debug tasks
{
"configurations": [
{
"type": "pwa-node",
"name": "Specs",
"request": "launch",
"runtimeExecutable": "pnpm",
"runtimeArgs": ["run", "specs"],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true,
"env": {
"NODE_ENV": "test",
"NODE_OPTIONS": "--enable-source-maps"
},
"sourceMaps": true,
"outFiles": ["!**/node_modules/.pnpm/**/*.js.map"],
"skipFiles": ["${workspaceFolder}/node_modules/**/*.js"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment