This commit is contained in:
Pax1601
2023-12-12 10:34:25 +01:00
parent d0fc286c43
commit 4423d5f3d5
55 changed files with 815 additions and 11079 deletions

17
node/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}\\run_client.js"
}
]
}