mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
11
.vscode/launch.json
vendored
11
.vscode/launch.json
vendored
@@ -1,6 +1,15 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
|
||||
{
|
||||
"type": "lldb",
|
||||
"request": "launch",
|
||||
"name": "Launch",
|
||||
"program": "${workspaceFolder}/zig-cache/bin/test",
|
||||
"preLaunchTask": "test",
|
||||
"args": ["/usr/local/bin/zig"],
|
||||
"cwd": "${workspaceFolder}",
|
||||
"console": "internalConsole"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
12
.vscode/tasks.json
vendored
12
.vscode/tasks.json
vendored
@@ -23,9 +23,17 @@
|
||||
},
|
||||
{
|
||||
"label": "test",
|
||||
"type": "process",
|
||||
"type": "shell",
|
||||
"command": "zig",
|
||||
"args": ["test", "${file}", "--main-pkg-path", "${workspaceFolder}"],
|
||||
"args": [
|
||||
"test",
|
||||
"${file}",
|
||||
"--main-pkg-path",
|
||||
"${workspaceFolder}",
|
||||
"-femit-bin=${workspaceFolder}/zig-cache/bin/test",
|
||||
";",
|
||||
"true"
|
||||
],
|
||||
|
||||
"group": {
|
||||
"kind": "test",
|
||||
|
||||
Reference in New Issue
Block a user