summaryrefslogtreecommitdiffstats
path: root/.vscode
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2021-10-17 16:54:53 +0200
committerVolpeon <git@volpeon.ink>2021-10-17 16:54:53 +0200
commit30b0adcacef48ac53aea13cbdc3288db0bd8d103 (patch)
tree402f4cc31a2fa4f0e746c81755b537b5f5137e4c /.vscode
downloadferalbot-30b0adcacef48ac53aea13cbdc3288db0bd8d103.tar.gz
feralbot-30b0adcacef48ac53aea13cbdc3288db0bd8d103.tar.bz2
feralbot-30b0adcacef48ac53aea13cbdc3288db0bd8d103.zip
Init
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json24
-rw-r--r--.vscode/settings.json3
2 files changed, 27 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}
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..25fa621
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,3 @@
1{
2 "typescript.tsdk": "node_modules/typescript/lib"
3}