1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-09 12:12:35 +01:00
server/fosscord-server.code-workspace
2022-08-19 19:07:10 +02:00

39 lines
585 B
Plaintext

{
"folders": [
{
"path": "src/"
},
{
"path": "assets/"
},
{
"path": "scripts/"
},
{
"path": "."
}
],
"settings": {
"files.exclude": {
"*.ansi": 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"
}
]
}
}