{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "command": "yarn",
    "tasks": [
        {
            "type": "shell",
            "label": "build",
            "args": [
                "run",
                "build"
            ],
            "problemMatcher": [
                "$tsc"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            }            
        },
        {
            "type": "shell",
            "label": "test",
            "args": [
                "run",
                "test"
            ],
            "problemMatcher": [
                "$tsc"
            ],
        }
    ]
}