chore: Update .gitignore and launch.json files

This commit is contained in:
qianlifeng 2024-09-05 22:45:45 +08:00
parent b21be6b286
commit 0a1033ada2
No known key found for this signature in database
3 changed files with 36 additions and 1 deletions

1
.gitignore vendored
View File

@ -18,3 +18,4 @@ Wox.UI.React/dist/
node_modules/
__pycache__/
Release/
__debug_bin*

19
Wox.UI.Flutter/wox/.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,19 @@
{
// 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": "wox (debug)",
"request": "launch",
"type": "dart"
},
{
"name": "wox (release)",
"request": "launch",
"type": "dart",
"flutterMode": "release",
}
]
}

15
Wox/.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,15 @@
{
// 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": "Run",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "main.go"
}
]
}