Files
airi/integrations/minecraft/.vscode/launch.json
T

36 lines
879 B
JSON

{
// 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": "Debug Minecraft (dev)",
"runtimeExecutable": "node",
"runtimeArgs": [
"--import",
"tsx"
],
"program": "${workspaceFolder}/src/main.ts",
"cwd": "${workspaceFolder}",
"envFile": "${workspaceFolder}/.env",
"skipFiles": [
"<node_internals>/**"
],
"console": "integratedTerminal"
},
{
"type": "node",
"request": "attach",
"name": "Attach to running bot",
"port": 9229,
"restart": true,
"skipFiles": [
"<node_internals>/**"
]
}
]
}