summary refs log tree commit diff
path: root/api/.vscode/launch.json
blob: 221931ee81884a1188e56cc3dd02b77224f09f2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
	// 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": [
		{
			"sourceMaps": true,
			"type": "node",
			"request": "launch",
			"name": "Launch Server",
			"program": "${workspaceFolder}/dist/start.js",
			"preLaunchTask": "tsc: build - tsconfig.json",
			"outFiles": ["${workspaceFolder}/dist/**/*.js"],
			"envFile": "${workspaceFolder}/.env"
		},
		{
			"name": "Debug current file",
			"program": "${file}",
			"request": "launch",
			"skipFiles": ["<node_internals>/**"],
			"runtimeArgs": ["--nolazy", "-r", "ts-node/register/transpile-only"],
			"preLaunchTask": "tsc: build - tsconfig.json",
			"type": "node",
			"resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"]
		}
	]
}