bms-repository/.vscode/launch.json
pfych 0029086b3f
Some checks failed
Build & Lint / build-lint (push) Failing after 2m10s
Deploy / setup (push) Failing after 1m3s
Init
2024-10-12 14:08:09 +11:00

21 lines
668 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"runtimeVersion": "20",
"request": "launch",
"name": "Debug Local API",
"cwd": "${workspaceFolder}/packages/api",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "debug"],
"sourceMaps": true,
"outFiles": ["${workspaceFolder}/packages/api/.esbuild/src/**/*.js"],
"resolveSourceMapLocations": ["${workspaceFolder}/packages/api/**"]
}
]
}