Files
PiliPlus/.vscode/launch.json
VillagerTom 94760a4136 tweak gitignore and vscode config (#1433)
* tweak gitignore and vscode config

* restore settings

---------

Co-authored-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-10-03 11:48:28 +08:00

48 lines
1.4 KiB
JSON

{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"request": "launch",
"type": "dart",
"preLaunchTask": "Update build_config"
},
{
"name": "Profile",
"request": "launch",
"type": "dart",
"flutterMode": "profile",
"preLaunchTask": "Update build_config"
},
{
"name": "Release",
"request": "launch",
"type": "dart",
"flutterMode": "release",
"preLaunchTask": "Update build_config"
},
{
"name": "Debug (FVM)",
"request": "launch",
"type": "dart",
"preLaunchTask": "Update build_config (FVM)"
},
{
"name": "Profile (FVM)",
"request": "launch",
"type": "dart",
"flutterMode": "profile",
"preLaunchTask": "Update build_config (FVM)"
},
{
"name": "Release (FVM)",
"request": "launch",
"type": "dart",
"flutterMode": "release",
"preLaunchTask": "Update build_config (FVM)"
}
]
}