2022-06-26 17:37:53 +02:00
|
|
|
{
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
|
|
|
"name": "Debug",
|
|
|
|
"type": "lua-local",
|
|
|
|
"request": "launch",
|
|
|
|
"program": {
|
|
|
|
"command": "just"
|
|
|
|
},
|
2023-05-05 00:04:25 +02:00
|
|
|
"args": ["run"],
|
|
|
|
"scriptFiles": ["${workspaceFolder}/**/*.tl"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Debug specs",
|
|
|
|
"type": "lua-local",
|
|
|
|
"request": "launch",
|
|
|
|
"program": {
|
|
|
|
"command": "just"
|
|
|
|
},
|
2023-05-14 13:04:45 +02:00
|
|
|
"args": [
|
|
|
|
"test",
|
|
|
|
"_spec" // Adapt to the spec to debug
|
|
|
|
],
|
2023-05-05 00:04:25 +02:00
|
|
|
"scriptFiles": ["${workspaceFolder}/**/*.tl"]
|
2022-06-26 17:37:53 +02:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|