-
Notifications
You must be signed in to change notification settings - Fork 0
/
odpt.code-workspace
64 lines (64 loc) · 1.31 KB
/
odpt.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"deno.enable": true,
"deno.lint": true,
"deno.unstable": true,
"deno.suggest.imports.hosts": {
"https://deno.land": true
},
"sqltools.connections": [
{
"previewLimit": 50,
"server": "localhost",
"port": 5432,
"driver": "PostgreSQL",
"name": "odpt",
"database": "postgres",
"username": "hannes",
"password": ""
}
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"request": "launch",
"name": "Launch current file",
"type": "pwa-node",
"program": "${file}",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "deno",
"runtimeArgs": [
"run",
"--unstable",
"--inspect",
"--allow-all"
],
"attachSimplePort": 9229,
"customDescriptionGenerator": "this.inspect ? this.inspect() : defaultValue"
},
{
"request": "launch",
"name": "Launch Generate Timetables",
"type": "pwa-node",
"program": "${workspaceFolder}/odpt-improvement/generateTraintimetables.ts",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "deno",
"runtimeArgs": [
"run",
"--unstable",
"--inspect",
"--allow-all"
],
"attachSimplePort": 9229,
"customDescriptionGenerator": "this.inspect ? this.inspect() : defaultValue"
}
]
}
}