{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "es6 watch",
            "type": "npm",
            "script": "compile-es6-watch",
            "problemMatcher": [
                "$tsc-watch"
            ],
            "presentation": {
                "group": "group-build"
            }
        },
        {
            "label": "bundle watch",
            "type": "npm",
            "script": "bundle-watch",
            "problemMatcher": [],
            "presentation": {
                "group": "group-build"
            }
        },
        {
            "label": "build",
            "dependsOn": [
                "es6 watch",
                "bundle watch"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "problemMatcher": []
        }
    ]
}