Skip to content

Commit 0949ef5

Browse files
committed
update launch configuration for MAPLE debugging
1 parent 1d65bbe commit 0949ef5

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.vscode/launch.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@
55
"version": "0.2.0",
66
"configurations": [
77
{
8-
"name": "Launch Program",
9-
"program": "${workspaceFolder}/app.js",
8+
"name": "Run and Debug MAPLE",
9+
"type": "node",
1010
"request": "launch",
11+
"runtimeExecutable": "yarn",
12+
"runtimeArgs": [
13+
"dev"
14+
],
15+
"env": {
16+
"NODE_OPTIONS": "--inspect"
17+
},
18+
"console": "integratedTerminal",
1119
"skipFiles": [
1220
"<node_internals>/**"
13-
],
14-
"type": "node"
15-
},
16-
{
17-
"name": "Launch in VSCode (with TypeScript)",
18-
"type": "node",
19-
"request": "launch",
20-
"program": "/Users/mrigank/maple/functions/src/notifications/index.ts", // Replace with path to your main entry point (e.g., "index.js")
21-
"sourceMaps": true
21+
]
2222
}
2323
]
24-
}
24+
}

0 commit comments

Comments
 (0)