summary refs log tree commit diff
path: root/bundle/.vscode
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-13 22:57:46 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-13 22:57:46 +0200
commit1f167e11df2535819a9d595f5302438fa52625b5 (patch)
treeffe704051842826603cabd7051e376a2f12aeb15 /bundle/.vscode
parentMerge branch 'master' of https://github.com/fosscord/fosscord-api (diff)
downloadserver-1f167e11df2535819a9d595f5302438fa52625b5.tar.xz
:construction: fix server bundle
Diffstat (limited to 'bundle/.vscode')
-rw-r--r--bundle/.vscode/launch.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/bundle/.vscode/launch.json b/bundle/.vscode/launch.json
new file mode 100644

index 00000000..0b5d2287 --- /dev/null +++ b/bundle/.vscode/launch.json
@@ -0,0 +1,18 @@ +{ + // 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 bundle", + "program": "${workspaceFolder}/dist/start.js", + "preLaunchTask": "tsc: build - tsconfig.json", + "outFiles": ["${workspaceFolder}/dist/**/*.js"], + "envFile": "${workspaceFolder}/.env" + } + ] +}