-
Notifications
You must be signed in to change notification settings - Fork 0
/
jobs-dev.code-workspace
80 lines (80 loc) · 2.01 KB
/
jobs-dev.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
80
{
"folders": [
{
"name": "BACKEND",
"path": "."
},
{
"name": "FRONTEND",
"path": "../jobs-dev"
}
],
"settings": {
"discord.enabled": true,
"editor.formatOnSave": true,
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "denoland.vscode-deno"
},
"[markdown]": {
"editor.defaultFormatter": "denoland.vscode-deno"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"typescript.preferences.importModuleSpecifier": "non-relative",
"typescript.tsdk": "node_modules/typescript/lib",
"thunder-client.customLocation": ".",
"thunder-client.saveToWorkspace": true
},
"extensions": {
"recommendations": ["rangav.vscode-thunder-client", "irongeek.vscode-env", "esbenp.prettier-vscode"]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"request": "launch",
"name": "Start API",
"type": "node",
"program": "${workspaceFolder}/src/main.ts",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "/home/edixon/.deno/bin/deno",
"runtimeArgs": [
"run",
"--config",
"./deno.json",
"--inspect-wait",
"--allow-env",
"--allow-read",
"--allow-net"
],
"attachSimplePort": 9229
},
{
"request": "launch",
"name": "Prepare DB",
"type": "node",
"program": "${workspaceFolder}/src/scraping/jobs.ts",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "/home/edixon/.deno/bin/deno",
"runtimeArgs": [
"run",
"--config",
"./deno.json",
"--inspect-wait",
"--allow-env",
"--allow-read",
"--allow-net",
"--allow-write"
],
"attachSimplePort": 9229
}
]
}
}