47 lines
1.4 KiB
JSON
47 lines
1.4 KiB
JSON
{
|
|
// 使用 IntelliSense 了解相关属性。
|
|
// 悬停以查看现有属性的描述。
|
|
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "remote_test",
|
|
"runtimeExecutable": "bun",
|
|
"runtimeArgs": ["test", "./test/remote_test.js", "-t", "exposes documented public methods", "--inspect-brk"],
|
|
"cwd": "${workspaceFolder}",
|
|
"console": "integratedTerminal",
|
|
"sourceMaps": true,
|
|
"outFiles": ["${workspaceFolder}/**/*.js"]
|
|
},
|
|
{
|
|
"type": "bun",
|
|
"internalConsoleOptions": "neverOpen",
|
|
"request": "launch",
|
|
"name": "Debug File",
|
|
"program": "${file}",
|
|
"cwd": "${workspaceFolder}",
|
|
"stopOnEntry": false,
|
|
"watchMode": false
|
|
},
|
|
{
|
|
"type": "bun",
|
|
"internalConsoleOptions": "neverOpen",
|
|
"request": "launch",
|
|
"name": "Run File",
|
|
"program": "${file}",
|
|
"cwd": "${workspaceFolder}",
|
|
"noDebug": true,
|
|
"watchMode": false
|
|
},
|
|
{
|
|
"type": "bun",
|
|
"internalConsoleOptions": "neverOpen",
|
|
"request": "attach",
|
|
"name": "Attach Bun",
|
|
"url": "ws://localhost:6499/e4xu5fgl1a",
|
|
"stopOnEntry": false
|
|
}
|
|
]
|
|
} |