Files
RustPython/.vscode/tasks.json
2026-01-04 21:10:28 +09:00

20 lines
419 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Build RustPython Debug",
"type": "shell",
"command": "cargo",
"args": [
"build",
],
"problemMatcher": [
"$rustc",
],
"group": {
"kind": "build",
"isDefault": true,
},
},
],
}