1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{
"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"
}
]
}
}
|