-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunch.json
74 lines (74 loc) · 2.04 KB
/
launch.json
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
// A launch configuration that launches the extension inside a new window
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.2.0",
"configurations": [
{
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"preLaunchTask": "Build VS Code Extension",
"args": [
"${workspaceFolder}/example",
"--extensionDevelopmentPath=${workspaceFolder}/dist/apps/vs-code-extension"
],
"sourceMaps": true,
"outFiles": [
"${workspaceFolder}/dist/apps/vs-code-extension/extension.cjs"
]
},
{
"name": "Attach to Language Server",
"type": "node",
"port": 6009,
"request": "attach",
"skipFiles": ["<node_internals>/**"],
"sourceMaps": true,
"restart": true,
"timeout": 60000,
"continueOnAttach": true,
"outFiles": [
"${workspaceFolder}/dist/apps/vs-code-extension/language-server.cjs",
"${workspaceFolder}/node_modules/langium"
]
},
{
"name": "Run Cars Example",
"command": "npm run example:cars",
"request": "launch",
"type": "node-terminal"
},
{
"name": "Run Vehicles Example",
"command": "npm run example:vehicles",
"request": "launch",
"type": "node-terminal"
},
{
"name": "Run Vehicles Polars Example",
"command": "npm run example:vehicles-polars",
"request": "launch",
"type": "node-terminal"
},
{
"name": "Run Testing Polars Example",
"command": "npm run example:testing-polars",
"request": "launch",
"type": "node-terminal"
},
{
"name": "Run Gas Reserve Example",
"command": "npm run example:gas",
"request": "launch",
"type": "node-terminal"
},
{
"name": "Run GTFS Example",
"command": "npm run example:gtfs",
"request": "launch",
"type": "node-terminal"
}
]
}