1
0
Fork 0
mirror of https://github.com/muerwre/vk-tg-bot.git synced 2025-04-24 22:46:41 +07:00
vk-tg-bot/.vscode/launch.json
2023-12-30 12:37:50 +07:00

16 lines
358 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Launch index.ts",
"type": "node",
"env": {
"NODE_ENV": "development"
},
"request": "launch",
"runtimeArgs": ["-r", "ts-node/register"],
"args": ["${workspaceFolder}/src/index.ts", "--config=./config.yml"],
"outputCapture": "std"
}
]
}