Skip to content

Commit 233bc4e

Browse files
authored
Merge pull request #12 from hankei6km/topic/setup-vscode-debugger
Setup vscode debugger
2 parents b30ed4a + 475c70c commit 233bc4e

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.vscode/launch.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "unit test",
9+
"request": "launch",
10+
"runtimeArgs": [
11+
"run-script",
12+
"test",
13+
"---",
14+
"--runInBand"
15+
],
16+
"runtimeExecutable": "npm",
17+
"skipFiles": [
18+
"<node_internals>/**"
19+
],
20+
"type": "pwa-node",
21+
"envFile": "${workspaceFolder}/.env.debug",
22+
"console": "integratedTerminal",
23+
"internalConsoleOptions": "neverOpen"
24+
}
25+
]
26+
}

0 commit comments

Comments
 (0)