Files
VariableVince 61f19dae7d VSCode: small textual fix in launch.json (#3659)
## Description:

Rename "Debug Jest Tests" to just "Debug Tests". We now use Vitest, not
Jest anymore since awhile. And in case we would switch to another
framework in the future, just leave its name out of the configuration
name.

## Please complete the following:

- [x] I have added screenshots for all UI updates
- [x] I process any text displayed to the user through translateText()
and I've added it to the en.json file
- [x] I have added relevant tests to the test directory
- [x] I confirm I have thoroughly tested these changes and take full
responsibility for any bugs introduced

## Please put your Discord username so you can be contacted if a bug or
regression is found:

tryout33
2026-04-13 20:19:54 -07:00

34 lines
790 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug Tests",
"runtimeExecutable": "npm",
"runtimeArgs": ["run-script", "test"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"type": "node",
"request": "launch",
"name": "Debug Server",
"runtimeExecutable": "node",
"runtimeArgs": [
"--loader",
"ts-node/esm",
"--experimental-specifier-resolution=node",
"${workspaceFolder}/src/server/Server.ts"
],
"env": {
"GAME_ENV": "dev"
},
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"sourceMaps": true,
"restart": true
}
]
}