HexCasting/.vscode/launch.json

27 lines
849 B
JSON
Raw Normal View History

2023-06-11 01:14:53 +02:00
{
// 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": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": false
},
2023-06-11 01:14:53 +02:00
{
"name": "Python: Generate Docs",
"type": "python",
"request": "launch",
"module": "hexdoc.hexdoc",
2023-06-11 01:14:53 +02:00
"args": [
2023-09-02 21:04:33 +02:00
"doc/properties.toml", "-o", "out", "--lang", "en_us",
2023-06-11 01:14:53 +02:00
],
"console": "integratedTerminal",
"justMyCode": false
}
]
}