summary refs log tree commit diff
path: root/bundle/.vscode/launch.json
blob: d7129ed8e97041fa3e675b0a22e42bef22c21121 (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
29
30
31
32
33
34
35
{
	"version": "0.2.0",
	"configurations": [
		{
			"sourceMaps": true,
			"name": "ts-node",
			"type": "node",
			"request": "launch",
			"args": [
				"${workspaceFolder}/src/start.ts"
			],
			"runtimeArgs": [
				"-r",
				"ts-node/register"
			],
			"protocol": "inspector",
			"internalConsoleOptions": "openOnSessionStart",
			"env": {
				"TS_NODE_PROJECT": "${workspaceFolder}/tsnode.tsconfig.json",
				"TS_NODE_COMPILER": "typescript-cached-transpile"
			},
			"resolveSourceMapLocations": null, /* allow breakpoints in modules other than bundle */
		},
		{
			"sourceMaps": true,
			"type": "node",
			"request": "launch",
			"name": "Launch Server",
			"program": "${workspaceFolder}/dist/bundle/src/start.js",
			"preLaunchTask": "tsc: build - tsconfig.json",
			"outFiles": ["${workspaceFolder}/dist/**/*.js"],
			"envFile": "${workspaceFolder}/.env",
		}
	]
}