Files
2021/.vscode/launch.json
Parnic 3dc7e1ccde Day 04 in javascript
This is a lot of copy/paste, but I am on a time crunch this morning so I'll clean it up later!
2021-12-05 11:19:10 -06:00

54 lines
1.5 KiB
JSON

{
// 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": "Node run 04",
"program": "${workspaceFolder}/src/04.js",
"request": "launch",
"skipFiles": [
"<node_internals>/**"
],
"type": "pwa-node"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug Rust executable 'aoc2021'",
"cargo": {
"args": [
"build",
"--bin=aoc2021",
"--package=aoc2021"
],
"filter": {
"name": "aoc2021",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug Rust unit tests in executable 'aoc2021'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=aoc2021",
"--package=aoc2021"
],
"filter": {
"name": "aoc2021",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}