mirror of
https://github.com/cool-team-official/cool-admin-midway.git
synced 2025-12-10 16:12:50 +00:00
24 lines
529 B
JSON
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
|
|
}]
|
|
}
|