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

47 lines
851 B
Plaintext
Raw Normal View History

2021-08-13 22:57:46 +02:00
{
"folders": [
{
"path": "src/"
2021-08-13 22:57:46 +02:00
},
{
"path": "assets/"
2021-08-13 22:57:46 +02:00
},
{
"path": "scripts/"
2021-08-13 22:57:46 +02:00
},
{
"path": "."
2022-08-12 23:52:43 +02:00
}
],
"settings": {
"files.exclude": {
"*.ansi": true,
2022-08-26 04:14:54 +02:00
"**/cache": true,
"**/cache_src": true
2021-08-13 22:57:46 +02:00
}
},
"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"
2022-08-26 04:14:54 +02:00
},
{
"command": "[ \"$(basename $PWD)\" != \"fosscord-server\" ] && cd ..; $(ps -o comm= $PPID) assets/cache",
"name": "Open testclient patch workspace",
"request": "launch",
"type": "node-terminal"
}
]
2022-08-12 23:52:43 +02:00
}
}