Skip to content

Commit 903fea4

Browse files
committed
upgrading dev dependencies and adding vscode launch config
1 parent 3d9e424 commit 903fea4

3 files changed

Lines changed: 227 additions & 127 deletions

File tree

.vscode/launch.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Python",
6+
"type": "python",
7+
"request": "launch",
8+
"stopOnEntry": true,
9+
"pythonPath": "${config:python.pythonPath}",
10+
"program": "${file}",
11+
"cwd": "${workspaceRoot}",
12+
"env": {},
13+
"envFile": "${workspaceRoot}/.env",
14+
"debugOptions": [
15+
"RedirectOutput"
16+
]
17+
},
18+
{
19+
"name": "Current TS Tests File",
20+
"type": "node",
21+
"request": "launch",
22+
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
23+
"args": ["-r", "ts-node/register", "${relativeFile}","--ui","tdd","--no-timeouts"],
24+
"cwd": "${workspaceRoot}",
25+
"protocol": "inspector"
26+
}
27+
]
28+
}

0 commit comments

Comments
 (0)