Files
NNG/.vscode/tasks.json
2023-09-10 21:05:59 +02:00

32 lines
615 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "lake: build",
"detail": "build lean files",
"type": "shell",
"command": "lake build",
"group": {
"kind": "build",
"isDefault": true
},
},
{
"label": "game: open browser",
"command": "${input:openSimpleBrowser}",
"problemMatcher": [],
// "runOptions": {
// "runOn": "folderOpen"
// }
},
],
"inputs": [
{
"id": "openSimpleBrowser",
"type": "command",
"command": "simpleBrowser.show",
"args": ["http://localhost:3000"]
}
]
}