summary refs log tree commit diff
path: root/bundle/.vscode
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-09-19 18:45:09 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-09-19 18:45:09 +0200
commitd45ea78ae6f2cbde69fd0b335d52c379846fce69 (patch)
treec27476208ca8f2c6012677096fe025259c0e8acf /bundle/.vscode
parent:truck: move handleFile to cdn (diff)
downloadserver-d45ea78ae6f2cbde69fd0b335d52c379846fce69.tar.xz
:bug: fix bundle debug
Diffstat (limited to 'bundle/.vscode')
-rw-r--r--bundle/.vscode/launch.json6
1 files changed, 4 insertions, 2 deletions
diff --git a/bundle/.vscode/launch.json b/bundle/.vscode/launch.json
index 0b5d2287..917f2a93 100644
--- a/bundle/.vscode/launch.json
+++ b/bundle/.vscode/launch.json
@@ -10,9 +10,11 @@
 			"request": "launch",
 			"name": "Launch server bundle",
 			"program": "${workspaceFolder}/dist/start.js",
+			"runtimeArgs": ["-r", "./tsconfig-paths-bootstrap.js"],
 			"preLaunchTask": "tsc: build - tsconfig.json",
-			"outFiles": ["${workspaceFolder}/dist/**/*.js"],
-			"envFile": "${workspaceFolder}/.env"
+			"outFiles": ["${workspaceFolder}/dist/**/*.js", "${workspaceFolder}/node_modules/@fosscord/**/*.js"],
+			"envFile": "${workspaceFolder}/.env",
+			"outDir": "${workspaceFolder}/dist"
 		}
 	]
 }