1 files changed, 14 insertions, 0 deletions
diff --git a/slowcord/.vscode/launch.json b/slowcord/.vscode/launch.json
new file mode 100644
index 00000000..0467baec
--- /dev/null
+++ b/slowcord/.vscode/launch.json
@@ -0,0 +1,14 @@
+{
+ "configurations": [
+ {
+ "name": "Launch Program",
+ "program": "${workspaceFolder}/build/index.js",
+ "request": "launch",
+ "skipFiles": [
+ "<node_internals>/**"
+ ],
+ "type": "node",
+ "preLaunchTask": "tsc: build - tsconfig.json"
+ }
+ ]
+}
\ No newline at end of file
|