summary refs log tree commit diff
path: root/.vscode
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-08 16:29:36 +0100
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-08 16:29:36 +0100
commit800163a913f7bba533dddc4b3ee28909578987ce (patch)
tree71f8e26597936c6472b73f013c8b956cf9e9363a /.vscode
parent:arrow_up: bump lambert-db (diff)
downloadserver-800163a913f7bba533dddc4b3ee28909578987ce.tar.xz
:sparkles: Event Model
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json17
1 files changed, 17 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 00000000..07fd32ac
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,17 @@
+{
+	// 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",
+			"program": "${workspaceFolder}/dist/index.js",
+			"preLaunchTask": "tsc: build - tsconfig.json",
+			"outFiles": ["${workspaceFolder}/dist/**/*.js"]
+		}
+	]
+}