Skip to content

Instantly share code, notes, and snippets.

@sjungling
Last active January 25, 2021 17:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sjungling/d5ca185cf06d598b9cbad7bd464e3d9f to your computer and use it in GitHub Desktop.
Save sjungling/d5ca185cf06d598b9cbad7bd464e3d9f to your computer and use it in GitHub Desktop.
VSCode Server-side Launch
{
"version": "0.2.0",
"configurations": [
{
"type": "pwa-node",
"name": "Attach By Process",
"processId": "${command:PickProcess}",
"request": "attach",
"skipFiles": [
"<node_internals>/**",
"**/runtime.js",
"**/asyncToGenerator.js",
"**/main.js"
],
"sourceMaps": true,
"smartStep":true,
"restart": true
}
]
}
{
"javascript.preferences.importModuleSpecifier": "relative",
"typescript.preferences.importModuleSpecifier": "relative",
"typescript.preferences.quoteStyle": "single",
"javascript.preferences.quoteStyle": "single",
"prettier.singleQuote": true,
"debug.javascript.autoAttachFilter": "smart",
"debug.javascript.usePreview": true,
"debug.javascript.terminalOptions": {
"skipFiles": [
"<node_internals>/**",
"**/runtime.js",
"**/asyncToGenerator.js",
"**/main.js"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment