fritzfix/.vscode/launch.json

15 lines
337 B
JSON
Raw Normal View History

2024-06-12 10:26:04 +02:00
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"runtimeVersion": "20",
"request": "launch",
"name": "api",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/fritzfix.js"
}
]
}