mirror of
https://github.com/moeru-ai/airi.git
synced 2026-08-14 00:48:06 +00:00
36 lines
879 B
JSON
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>/**"
|
|
]
|
|
}
|
|
]
|
|
}
|