Server/project/Server.code-workspace

52 lines
1.6 KiB
Plaintext
Raw Normal View History

2023-03-03 16:23:46 +01:00
{
"folders": [
{
2024-07-22 23:15:57 +02:00
"path": "."
}
2023-03-03 16:23:46 +01:00
],
"settings": {
"window.title": "SPT Server",
2024-07-22 23:15:57 +02:00
"editor.formatOnSave": true,
"editor.defaultFormatter": "biomejs.biome",
"editor.codeActionsOnSave": {
"source.organizeImports.biome": "explicit",
"quickfix.biome": "explicit"
}
},
"extensions": {
"recommendations": [
2024-07-22 23:15:57 +02:00
"EditorConfig.EditorConfig", // EditorConfig file support.
"vitest.explorer", // ViTest test runner.
2024-07-22 23:15:57 +02:00
"refringe.spt-id-highlighter", // SPT ID information of hover.
"biomejs.biome" // Biome code formatting, linting, and refactoring.
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"type": "node",
"runtimeVersion": "20.11.1",
"runtimeExecutable": "npm",
"request": "launch",
"sourceMaps": true,
"runtimeArgs": ["run", "run:debug"],
"outFiles": ["!**/node_modules/**"],
"cwd": "${workspaceFolder}",
2024-07-22 23:15:57 +02:00
"outputCapture": "std"
},
{
"name": "Run Vitest Tests",
"type": "node",
"runtimeVersion": "20.11.1",
"runtimeExecutable": "npm",
"request": "launch",
"runtimeArgs": ["run", "test"],
"console": "integratedTerminal",
2024-07-22 23:15:57 +02:00
"internalConsoleOptions": "neverOpen"
}
]
}
}