egg-born-template-cabloy
Version:
egg-born-template-cabloy
49 lines (48 loc) • 1.27 kB
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": [
{
"name": "dev:backend",
"type": "node",
"request": "launch",
"cwd": "${workspaceRoot}",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev:backend"]
},
{
"name": "dev:backend(attach)",
"type": "node",
"request": "attach",
"processId": "${command:PickProcess}",
"cwd": "${workspaceRoot}",
"skipFiles": ["<node_internals>/**"]
},
{
"name": "test:backend",
"type": "node",
"request": "launch",
"cwd": "${workspaceRoot}",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "test:backend"]
},
{
"name": "cov:backend",
"type": "node",
"request": "launch",
"cwd": "${workspaceRoot}",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "cov:backend"]
},
{
"name": "dev:front",
"type": "node",
"request": "launch",
"cwd": "${workspaceRoot}",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev:front"]
}
]
}