Skip to content
This repository was archived by the owner on Mar 24, 2023. It is now read-only.

Commit 56c9722

Browse files
author
vladkampov
committed
Add vscode debug config
1 parent 9c1d3c1 commit 56c9722

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.vscode/launch.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "node",
6+
"request": "attach",
7+
"name": "Attach",
8+
"port": 9229
9+
}
10+
]
11+
}

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"lint": "eslint ./src/**.js",
3131
"coverage": "jest --coverage --config=conf/jest.config.js",
3232
"test": "jest --config=conf/jest.config.js",
33+
"debug": "node --inspect-brk node_modules/.bin/jest --runInBand --config=conf/jest.config.js",
3334
"test:watch": "jest --watch"
3435
}
3536
}

0 commit comments

Comments
 (0)