{
	// Use IntelliSense to learn about possible attributes.
	// Hover to view descriptions of existing attributes.
	// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
	"version": "0.2.0",
	"configurations": [
		{
			"request": "launch",
			"name": "Launch Program",
			"type": "node",
			"program": "${workspaceFolder}/main.ts",
			"cwd": "${workspaceFolder}",
			"env": {},
			"runtimeExecutable": "/Users/stuart/.deno/bin/deno",
			"runtimeArgs": [
				"run",
				"--unstable",
				"--inspect-brk",
				"--allow-all"
			],
			"attachSimplePort": 9229
		},
		{
			"request": "launch",
			"name": "Debug tests",
			"type": "node",
			"cwd": "${workspaceFolder}/test",
			"env": {},
			"runtimeExecutable": "/Users/stuart/.deno/bin/deno",
			"runtimeArgs": [
				"test",
				"--inspect-brk",
				"--allow-all"
			],
			"attachSimplePort": 9229
		}
	]
}