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
commitc220f27894afab44310fb0428790021c9c206a9e (patch)
tree9ad87dc16ba2c88e2a2fbce97842124d95ca7f8f /bundle/.vscode
parent:truck: move handleFile to cdn (diff)
downloadserver-c220f27894afab44310fb0428790021c9c206a9e.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" } ] }