{
	// 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": [
		{
			"name": "Debug APIGEE Tests",
			"runtimeVersion": "12.15.0",
			"type": "node",
			"request": "launch",
			"program": "${workspaceFolder}/node_modules/.bin/ts-mocha",
			"args": [
				"--inspect-brk"
			],
			"console": "integratedTerminal",
			"internalConsoleOptions": "neverOpen",
			"port": 9229,
			"outFiles": [
				"dist/**/*.js"
			]
		},
		{
			"type": "node",
			"request": "launch",
			"name": "Debug APIGEE Generate",
			"program": "${workspaceFolder}/dist/main.js",
			"args": [ "resources", "generate" ],
			"skipFiles": [
				"<node_internals>/**"
			],
		}
	]
}