Tokamak/.vscode/tasks.json

23 lines
462 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "swift build",
"type": "shell",
"command": "swift build"
},
{
"label": "swift test",
"type": "shell",
"command": "swift test"
},
{
"label": "carton dev",
"type": "shell",
"command": "carton dev --product TokamakDemo"
}
]
}