-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtelegram-bot-deno.code-workspace
79 lines (79 loc) · 1.75 KB
/
telegram-bot-deno.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"folders": [
{
"path": ".",
"name": "_root"
},
{
"path": "./telegram-bot",
"name": "telegram-bot"
},
{
"path": "./beabee-client",
"name": "beabee-client"
},
{
"path": "./beabee-common",
"name": "beabee-common"
}
],
"settings": {
"cSpell.words": [
"alosaur",
"Beabee",
"callouts",
"datetime",
"Deno",
"denodb",
"selectboxes",
"skippable"
],
"prettier.enable": false,
"eslint.enable": false,
"deno.enable": true,
"deno.lint": true,
"deno.unstable": true,
"deno.cacheOnSave": true,
"deno.disablePaths": [
"./beabee-client/test/web",
"./beabee-client/test/node",
"./beabee-client/dist",
"./beabee-client/deno_cache",
"./beabee-client/node_modules",
"./beabee-client/jest.config.web.js",
"./beabee-client/jest.config.node.js",
"./beabee-common/dist",
"./beabee-common/test/node",
"./beabee-common/node_modules",
"./beabee-common/jest.config.js",
"./beabee-common/.vscode"
],
"editor.defaultFormatter": "denoland.vscode-deno",
"editor.formatOnSave": true,
"typescript.format.enable": true
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"request": "launch",
"name": "Debug Telegram Bot with Deno",
"type": "node",
"program": "${workspaceFolder}/main.ts",
"cwd": "${workspaceFolder}/telegram-bot",
"runtimeExecutable": "deno",
"runtimeArgs": [
"run",
"--inspect-wait",
"--allow-all"
],
"attachSimplePort": 9229
}
]
},
"extensions": {
"recommendations": [
"denoland.vscode-deno"
]
}
}