Skip to content

Commit 8f917d0

Browse files
author
magne
committed
feat: finish implementing acceptance test, switched to got instead of ky
1 parent 779c2b0 commit 8f917d0

File tree

9 files changed

+424
-28
lines changed

9 files changed

+424
-28
lines changed

.vscode/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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+
"type": "node",
9+
"request": "launch",
10+
"name": "Launch Program",
11+
"skipFiles": ["<node_internals>/**"],
12+
"program": "${file}",
13+
"preLaunchTask": "tsc: build - tsconfig.json",
14+
"outFiles": ["${workspaceFolder}/dist/**/*.js"]
15+
}
16+
]
17+
}

0 commit comments

Comments
 (0)