summaryrefslogtreecommitdiffstats
path: root/.vscode/launch.json
diff options
context:
space:
mode:
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json24
1 files changed, 24 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..fe4c94f
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,24 @@
1{
2 "version": "0.2.0",
3 "configurations": [
4 {
5 "name": "ts-node",
6 "type": "node",
7 "request": "launch",
8 "args": [
9 "src/index.ts"
10 ],
11 "runtimeArgs": [
12 "-r",
13 "ts-node/register"
14 ],
15 "env": {
16 "MASTODON_TOKEN": "-mPmNM7D-BOmWt2_VVUODTCSKk9sLG7BY8zOK-FFRMc",
17 "MISSKEY_TOKEN": "HGwt6ZGuZ7v6ztV3C0RMCwDYFuhhN6sg"
18 },
19 "cwd": "${workspaceRoot}",
20 "protocol": "inspector",
21 "internalConsoleOptions": "openOnSessionStart"
22 }
23 ]
24}