2025-01-09 20:40:58 +08:00

24 lines
529 B
JSON

{
"version": "0.2.0",
"configurations": [{
"name": "Cool Admin",
"type": "node",
"request": "launch",
"cwd": "${workspaceRoot}",
"runtimeExecutable": "npm",
"windows": {
"runtimeExecutable": "npm.cmd"
},
"runtimeArgs": [
"run",
"dev"
],
"env": {
"NODE_ENV": "local"
},
"console": "integratedTerminal",
"restart": true,
"autoAttachChildProcesses": true
}]
}