Skip to content
This repository has been archived by the owner on Jan 12, 2023. It is now read-only.

Commit

Permalink
added open file debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Sciator committed May 8, 2020
1 parent 460062d commit c1a3b02
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
{
"type": "node",
"request": "launch",
"name": "Start .mC",
"name": "Generate JSON from .mC and run",
"console": "integratedTerminal",
"program": "${workspaceFolder}/index.ts",
"args": [
Expand Down Expand Up @@ -46,6 +46,22 @@
"outFiles": [
"${workspaceFolder}/bin/**/*.js"
]
},
{
"type": "node",
"request": "launch",
"name": "Start .mC",
"console": "integratedTerminal",
"program": "${workspaceFolder}/index.ts",
"args": [
"${file}"
],
"skipFiles": [
"<node_internals>/**"
],
"outFiles": [
"${workspaceFolder}/bin/**/*.js"
]
}
]
}

0 comments on commit c1a3b02

Please sign in to comment.