diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-09-26 12:42:01 +1000 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-09-26 12:42:01 +1000 |
commit | 14b0c86bcd56201c4ff24607d5cad09628548b6e (patch) | |
tree | a4326f4d99fcc628cf90553ed446b93919e58d82 /.vscode | |
parent | Refactor to mono-repo + upgrade packages (diff) | |
download | server-14b0c86bcd56201c4ff24607d5cad09628548b6e.tar.xz |
'Fix' distinct alias typeorm issue
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/launch.json | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..552ce0b6 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,19 @@ +{ + // 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": [ + { + "type": "node", + "request": "launch", + "name": "Launch Program", + "skipFiles": [ + "<node_internals>/**" + ], + "program": "${workspaceFolder}/src/bundle/start.ts", + "outFiles": [ "${workspaceFolder}/dist/**/*.js" ], + "preLaunchTask": "tsc: build - tsconfig.json" + } + ] +} \ No newline at end of file |