xiongzhu 2 년 전
부모
커밋
12a85c702e
1개의 변경된 파일8개의 추가작업 그리고 10개의 파일을 삭제
  1. 8 10
      .vscode/launch.json

+ 8 - 10
.vscode/launch.json

@@ -4,14 +4,12 @@
     // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
     "version": "0.2.0",
     "configurations": [
-        {
-            "type": "node",
-            "request": "launch",
-            "name": "Debug Nest Framework",
-            "args": ["${workspaceFolder}/src/main.ts"],
-            "runtimeArgs": ["--nolazy", "-r", "ts-node/register"],
-            "sourceMaps": true,
-            "cwd": "${workspaceRoot}"
-        }
+      {
+        "type": "node",
+        "request": "attach",
+        "name": "Attach NestJS WS",
+        "port": 9229,
+        "restart": true
+      }
     ]
-}
+  }