G92 > send-to-ESP

This commit is contained in:
ChK
2026-04-06 05:24:41 +02:00
parent 3e874e70c9
commit 3d33ecd747
12 changed files with 3337 additions and 20 deletions

18
.vscode/launch.json vendored
View File

@@ -6,11 +6,27 @@
"type": "node",
"request": "attach",
"address": "localhost",
"port": 2081,
"port": 2081,
"localRoot": "${workspaceFolder}",
"remoteRoot": "/usr/src/app",
"restart": true,
"timeout": 10000
},
{
"name": "Debug npm test",
"type": "node",
"request": "launch",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "test"],
"console": "integratedTerminal"
},
{
"name": "Debug current test file",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/node_modules/jest/bin/jest.js",
"args": ["--runInBand", "${file}"],
"console": "integratedTerminal"
}
]
}