diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-08-13 22:57:46 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-08-13 22:57:46 +0200 |
commit | 1f167e11df2535819a9d595f5302438fa52625b5 (patch) | |
tree | ffe704051842826603cabd7051e376a2f12aeb15 /bundle/.vscode/launch.json | |
parent | Merge branch 'master' of https://github.com/fosscord/fosscord-api (diff) | |
download | server-1f167e11df2535819a9d595f5302438fa52625b5.tar.xz |
:construction: fix server bundle
Diffstat (limited to 'bundle/.vscode/launch.json')
-rw-r--r-- | bundle/.vscode/launch.json | 18 |
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" + } + ] +} |