You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

53 lines
2.0 KiB

{
// 使 IntelliSense
//
// 访: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "主程序",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/UmiOCR-data/main.py", //
"cwd": "${workspaceFolder}", // exe
"console": "integratedTerminal", // VS Code
"justMyCode": true,
"env": {
"PYDEVD_DISABLE_FILE_VALIDATION": "1", //
},
"python": "${workspaceFolder}/UmiOCR-data/runtime/python.exe", //
"args": []
},
{
"name": "翻译组件",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/UmiOCR-data/main.py",
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"justMyCode": true,
"env": {
"PYDEVD_DISABLE_FILE_VALIDATION": "1",
},
"python": "${workspaceFolder}/UmiOCR-data/runtime/python.exe",
"args": [
"--import_module",
"../dev-tools/i18n"
]
},
{
"name": "当前文件",
"type": "python",
"request": "launch",
"program": "${file}", //
"cwd": "${fileDirname}", //
"console": "integratedTerminal", // VS Code
"justMyCode": true,
"env": {
"PYDEVD_DISABLE_FILE_VALIDATION": "1", //
},
"python": "${workspaceFolder}/UmiOCR-data/runtime/python.exe", //
"args": []
}
]
}