2 files changed, 27 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
diff --git a/slowcord/.vscode/tasks.json b/slowcord/.vscode/tasks.json
new file mode 100644
index 00000000..356126d8
--- /dev/null
+++ b/slowcord/.vscode/tasks.json
@@ -0,0 +1,13 @@
+{
+ "version": "2.0.0",
+ "tasks": [
+ {
+ "type": "npm",
+ "script": "build",
+ "group": "build",
+ "problemMatcher": [],
+ "label": "npm: build",
+ "detail": "tsc -b"
+ }
+ ]
+}
\ No newline at end of file
|