summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json50
1 files changed, 22 insertions, 28 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 8a8daaf1..329943a4 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -1,29 +1,23 @@
{
- // 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": "Attach",
- "port": 9229,
- "request": "attach",
- "skipFiles": [
- "<node_internals>/**"
- ],
- "type": "node"
- },
- {
- "type": "node",
- "request": "launch",
- "name": "Launch Program",
- "skipFiles": [
- "<node_internals>/**"
- ],
- "program": "${file}",
- "outFiles": [
- "${workspaceFolder}/**/*.js"
- ]
- }
- ]
-} \ No newline at end of file
+ // 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": "Attach",
+ "port": 9229,
+ "request": "attach",
+ "skipFiles": ["<node_internals>/**"],
+ "type": "node"
+ },
+ {
+ "type": "node",
+ "request": "launch",
+ "name": "Launch Program",
+ "skipFiles": ["<node_internals>/**"],
+ "program": "${file}",
+ "outFiles": ["${workspaceFolder}/**/*.js"]
+ }
+ ]
+}