From c3591a82334669b87499c6bed3cb6d697bdc1acc Mon Sep 17 00:00:00 2001 From: Madeline <46743919+MaddyUnderStars@users.noreply.github.com> Date: Mon, 26 Sep 2022 12:42:01 +1000 Subject: 'Fix' distinct alias typeorm issue --- .vscode/launch.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .vscode/launch.json (limited to '.vscode') 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": [ + "/**" + ], + "program": "${workspaceFolder}/src/bundle/start.ts", + "outFiles": [ "${workspaceFolder}/dist/**/*.js" ], + "preLaunchTask": "tsc: build - tsconfig.json" + } + ] +} \ No newline at end of file -- cgit 1.4.1