aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
blob: c6666c91ff6c4e9d7b16a5b6de757bb599a3ac31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
	"configurations": [
		{
			"command": "yarn dev",
			"name": "BushBot (tsc)",
			"request": "launch",
			"type": "node-terminal",
			"skipFiles": ["<node_internals>/**", "**/Yarn/**", "**/.pnp.js", "**/.yarn/releases/**"]
		},
		{
			"command": "yarn start",
			"name": "BushBot (esbuild)",
			"request": "launch",
			"type": "node-terminal",
			"skipFiles": ["<node_internals>/**", "**/Yarn/**", "**/.pnp.js", "**/.yarn/releases/**"]
		}
	]
}