summary refs log tree commit diff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-09-26 12:42:01 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-09-26 12:42:01 +1000
commitc3591a82334669b87499c6bed3cb6d697bdc1acc (patch)
tree7b476130155cc9a98a5143fed4533efc212080ad /.vscode/launch.json
parentRefactor to mono-repo + upgrade packages (diff)
downloadserver-c3591a82334669b87499c6bed3cb6d697bdc1acc.tar.xz
'Fix' distinct alias typeorm issue
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json19
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