spacebar/slowcord/.vscode/launch.json

14 lines
257 B
JSON

{
"configurations": [
{
"name": "Launch Program",
"program": "${workspaceFolder}/build/index.js",
"request": "launch",
"skipFiles": [
"<node_internals>/**"
],
"type": "node",
"preLaunchTask": "tsc: build - tsconfig.json"
}
]
}