Files
moeka-project/.vscode/launch.json
T
nanakura d03b574fd1
autofix.ci / autofix (pull_request) Failing after 18m46s
CI / Lint (pull_request) Successful in 18m21s
CI / Build Test (stage-web) (pull_request) Failing after 12m34s
CI / Build Test (ui-loading-screens) (pull_request) Failing after 13m24s
CI / Build Test (ui-transitions) (pull_request) Successful in 28m30s
CI / Unit Test (pull_request) Failing after 17m51s
CI / Type Check (pull_request) Successful in 26m58s
CI / Check Provenance (pull_request) Failing after 1m6s
PR Triage Dispatch / Dispatch PR Triage (pull_request_target) Successful in 23s
chore: remove the VSCode integration
The fork does not use the VSCode extension. The CI install also failed,
because the extension ran `tsx` from a `prepare` script and never
declared `tsx` as a dependency.

Remove both `integrations/vscode` packages, the release-vsix workflow,
the workspace glob, and the debug launch config. The host plugin was a
stub with no dependents.
2026-09-14 20:37:32 +07:00

23 lines
627 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Minecraft Service",
"type": "node",
"request": "launch",
// Where to run the command
"runtimeExecutable": "bun",
"runtimeArgs": ["run", "start"],
"cwd": "${workspaceFolder}/integrations/minecraft",
"envFile": "${workspaceFolder}/integrations/minecraft/.env",
// Open terminal when debugging starts (Optional)
// Useful to see console.logs
// "console": "integratedTerminal",
// "internalConsoleOptions": "neverOpen",
"skipFiles": [
"<node_internals>/**"
]
}
]
}