Adds a default vscode config with generally applicable settings. Adds more entrypoints to justfile both for environment setup and to help agents better verify changes.
19 lines
401 B
JSON
19 lines
401 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Cargo launch",
|
|
"cargo": {
|
|
"cwd": "${workspaceFolder}/codex-rs",
|
|
"args": [
|
|
"build",
|
|
"--bin=codex-tui"
|
|
]
|
|
},
|
|
"args": []
|
|
}
|
|
]
|
|
}
|