gpt-pretrain/.vscode/launch.json

18 lines
539 B
JSON
Raw Normal View History

2023-05-04 21:52:25 +08:00
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: generate",
2024-02-22 15:03:32 +08:00
"type": "debugpy",
2023-05-04 21:52:25 +08:00
"request": "launch",
2024-02-22 15:03:32 +08:00
"program": "${file}",
2023-05-04 21:52:25 +08:00
"args": [],
2024-02-22 15:03:32 +08:00
"cwd": "${fileDirname}",
2023-05-04 21:52:25 +08:00
"console": "integratedTerminal",
2024-02-22 15:03:32 +08:00
"justMyCode": false
2023-05-04 21:52:25 +08:00
}
]
}