Files
logseq/.vscode/launch.json
T
2025-06-02 17:15:13 +02:00

16 lines
657 B
JSON

{
// Usare IntelliSense per informazioni sui possibili attributi.
// Al passaggio del mouse vengono visualizzate le descrizioni degli attributi esistenti.
// Per altre informazioni, visitare: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{"name":"Python: modulo","type":"python","request":"launch","module":"enter-your-module-name","justMyCode":true},{
"name": "Python: file corrente",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": true
}
]
}