1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-22 18:32:29 +01:00
server/fosscord-server.code-workspace
2022-09-04 15:15:25 +02:00

47 lines
851 B
Plaintext

{
"folders": [
{
"path": "src/"
},
{
"path": "assets/"
},
{
"path": "scripts/"
},
{
"path": "."
}
],
"settings": {
"files.exclude": {
"*.ansi": true,
"**/cache": true,
"**/cache_src": true
}
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"command": "npm run start:bundle:vscode-dbg",
"name": "Run Fosscord with debugger",
"request": "launch",
"type": "node-terminal"
},
{
"command": "kitty npm run start:bundle:vscode-dbg",
"name": "Run Fosscord with debugger (kitty)",
"request": "launch",
"type": "node-terminal"
},
{
"command": "[ \"$(basename $PWD)\" != \"fosscord-server\" ] && cd ..; $(ps -o comm= $PPID) assets/cache",
"name": "Open testclient patch workspace",
"request": "launch",
"type": "node-terminal"
}
]
}
}