{
	// 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": [
		{
			"type": "node",
			"request": "launch",
			"name": "Launch resource add",
			"program": "${workspaceFolder}/cli/af-resources-add.js",
			"args": [
				"stbv_WebSiteCMS_DataResources",
				"--name",
				"API_Resources",
				"-s",
				"dev.obet.no"
			],
			"skipFiles": ["<node_internals>/**/*.js"]
		},
		{
			"type": "node",
			"request": "launch",
			"name": "Launch generate types",
			"runtimeArgs": [
				"--inspect-brk",
				"${workspaceFolder}/cli/af-vite-generate-types.js"
			],
			"args": [],
			"skipFiles": ["<node_internals>/**/*.js"]
		},
		{
			"name": "Debug Jest Tests",
			"type": "node",
			"request": "launch",
			"runtimeArgs": [
				"--inspect-brk",
				"${workspaceRoot}/node_modules/jest/bin/jest.js",
				"--runInBand"
			],
			"internalConsoleOptions": "neverOpen",
			"port": 9229,
			"skipFiles": ["<node_internals>/**/*.js"]
		}
	]
}
