We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e908d52 commit 8b79b30Copy full SHA for 8b79b30
.vscode/launch.json
@@ -0,0 +1,36 @@
1
+{
2
+ // 使用 IntelliSense 了解相关属性。
3
+ // 悬停以查看现有属性的描述。
4
+ // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version": "0.2.0",
6
+ "configurations": [
7
+ {
8
+ "type": "node",
9
+ "request": "launch",
10
+ "name": "启动后端程序-base-system",
11
+ "skipFiles": [
12
+ "<node_internals>/**"
13
+ ],
14
+ "cwd": "${workspaceFolder}/backend",
15
+ "runtimeExecutable": "pnpm",
16
+ "runtimeArgs": [
17
+ "start:dev"
18
19
+ "console": "integratedTerminal"
20
+ },
21
22
23
24
+ "name": "启动后端程序-base-demo",
25
26
27
28
29
30
31
+ "start:dev:demo"
32
33
34
+ }
35
+ ]
36
+}
0 commit comments