blob: cce0ba402d022e60208046bc0abb04e9153f7ec3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{
"configurations": [
{
"type": "node-terminal",
"command": "yarn start",
"name": "Tanzanite",
"request": "launch",
"cwd": "${workspaceFolder}",
"program": "${workspaceFolder}/dist/src/bot.js",
"sourceMaps": true,
"resolveSourceMapLocations": ["${workspaceFolder}/**"],
"skipFiles": ["<node_internals>/**", "/**/.yarn/**", "/**/.nvm/**"]
}
]
}
|