👋

the launch.json of tsdx + jest + vscode

2021/07/07に公開

tsdx

https://github.com/formium/tsdx

.launch.json

{
	"version": "0.2.0",
	"configurations": [
		{
			"type": "node",
			"request": "launch",
			"name": "Jest All",
			"program": "${workspaceFolder}/node_modules/.bin/tsdx",
			"args": ["test", "--runInBand"],
			"console": "integratedTerminal",
			"internalConsoleOptions": "neverOpen",
			"disableOptimisticBPs": true
		}
	]
}

Discussion