chore: .vscode/launch.json

This commit is contained in:
2026-07-01 17:55:05 +08:00
parent dcbab284db
commit cf8c96be7d
+23
View File
@@ -0,0 +1,23 @@
{
"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
}]
}