mirror of
https://github.com/cool-team-official/cool-admin-midway.git
synced 2026-01-01 15:28:18 +00:00
35 lines
880 B
JSON
35 lines
880 B
JSON
{
|
|
// 使用 IntelliSense 了解相关属性。
|
|
// 悬停以查看现有属性的描述。
|
|
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Midway Debug",
|
|
"type": "node",
|
|
"autoAttachChildProcesses": true,
|
|
"console": "integratedTerminal",
|
|
"env": {
|
|
"NODE_ENV": "local"
|
|
},
|
|
"port": 9229,
|
|
// "preLaunchTask": "TypeScript compile",
|
|
"protocol": "auto",
|
|
"request": "launch",
|
|
"restart": true,
|
|
"runtimeArgs": [
|
|
"run",
|
|
"debug",
|
|
"--",
|
|
"--inspect-brk"
|
|
],
|
|
"runtimeExecutable": "npm",
|
|
"skipFiles": [
|
|
// "${workspaceFolder}/node_modules/**/*.js",
|
|
"${workspaceFolder}/node_modules/rxjs/**/*.js",
|
|
"<node_internals>/**/*.js"
|
|
]
|
|
}
|
|
]
|
|
}
|