summary refs log tree commit diff
path: root/src-slowcord/bot/.vscode/launch.json
blob: 92765e226435480c644b31b7e6dc510ca21ca66e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
	"configurations": [
		{
			"name": "Slowcord Bot",
			"program": "${workspaceFolder}/build/index.js",
			"request": "launch",
			"skipFiles": [
				"<node_internals>/**"
			],
			"type": "node",
			"preLaunchTask": "npm: build"
		}

	]
}