Skip to content

Commit

Permalink
update: vscode launch.json
Browse files Browse the repository at this point in the history
  • Loading branch information
windingwind committed Nov 9, 2024
1 parent 6f8aa89 commit ba4ffb0
Showing 1 changed file with 3 additions and 20 deletions.
23 changes: 3 additions & 20 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,19 @@
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "StartDev",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "start-watch"]
"runtimeArgs": ["run", "start"]
},
{
"type": "node",
"request": "launch",
"name": "Restart",
"name": "Lint",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "restart"]
},
{
"type": "node",
"request": "launch",
"name": "Reload",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "reload"]
},
{
"type": "node",
"request": "launch",
"name": "Restart in Prod Mode",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "restart-prod"]
"runtimeArgs": ["run", "lint"]
}
]
}

0 comments on commit ba4ffb0

Please sign in to comment.