This commit is contained in:
lik
2026-06-14 11:46:48 +08:00
parent 7b9142bc66
commit b7def15527
5 changed files with 32 additions and 4 deletions

28
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,28 @@
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "user-api",
"skipFiles": [
"<node_internals>/**"
],
"cwd": "${workspaceFolder}\\api\\user\\",
"program": "${workspaceFolder}\\api\\user\\index.js"
},
{
"type": "node",
"request": "launch",
"name": "health-api",
"skipFiles": [
"<node_internals>/**"
],
"cwd": "${workspaceFolder}\\api\\health\\",
"program": "${workspaceFolder}\\api\\health\\index.js"
}
]
}