소스 검색

feat: debugger with tsx

Sv443 3 달 전
부모
커밋
7435852d55
1개의 변경된 파일18개의 추가작업 그리고 0개의 파일을 삭제
  1. 18 0
      .vscode/launch.json

+ 18 - 0
.vscode/launch.json

@@ -0,0 +1,18 @@
+{
+  "version": "0.2.0",
+  "configurations": [
+    {
+      "name": "fix-dts",
+      "type": "node",
+      "request": "launch",
+      "program": "${workspaceFolder}/tools/fix-dts.mts",
+      "runtimeExecutable": "tsx",
+      "console": "integratedTerminal",
+      "internalConsoleOptions": "neverOpen",
+      "skipFiles": [
+        "<node_internals>/**",
+        "${workspaceFolder}/node_modules/**"
+      ]
+    }
+  ]
+}