29 lines
559 B
JSON
29 lines
559 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Debug",
|
|
"type": "lua-local",
|
|
"request": "launch",
|
|
"program": {
|
|
"command": "just"
|
|
},
|
|
"args": ["run"],
|
|
"scriptFiles": ["${workspaceFolder}/**/*.tl"]
|
|
},
|
|
{
|
|
"name": "Debug specs",
|
|
"type": "lua-local",
|
|
"request": "launch",
|
|
"program": {
|
|
"command": "just"
|
|
},
|
|
"args": [
|
|
"test",
|
|
"_spec" // Adapt to the spec to debug
|
|
],
|
|
"scriptFiles": ["${workspaceFolder}/**/*.tl"]
|
|
}
|
|
]
|
|
}
|