LingTropy/lingtropy-client/.vscode/launch.json
2025-03-17 22:45:41 +08:00

33 lines
573 B
JSON

{
"version": "1.0.0",
"compounds": [
{
"name": "Debug Run",
"configurations": [
"Debug App"
],
"presentation": {
"hidden": false,
"group": "",
"order": 1
},
"stopAll": true
}
],
"configurations": [
{
"name": "Debug App",
"request": "launch",
"type": "node",
"timeout": 60000,
"runtimeArgs": [
"run-script",
"dev"
],
"cwd": "${workspaceRoot}",
"runtimeExecutable": "npm",
"console": "integratedTerminal"
}
]
}