This is a lot of copy/paste, but I am on a time crunch this morning so I'll clean it up later!
54 lines
1.5 KiB
JSON
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}"
|
|
}
|
|
]
|
|
} |