Last active
January 25, 2021 17:12
-
-
Save sjungling/d5ca185cf06d598b9cbad7bd464e3d9f to your computer and use it in GitHub Desktop.
VSCode Server-side Launch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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 | |
} | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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