{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "All Build",
            "dependsOn":[
                "TypeScript Build Watch",
                "Web Atoms Dev Server"
            ],
            "problemMatcher": [],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        },
        {
            "label": "TypeScript Build Watch",
            "type": "typescript",
            "tsconfig": "tsconfig.json",
            "option": "watch",
        },
        {
            "label": "Web Atoms Dev Server",
            "type": "shell",
            "command": "wads",
            "args": [
                // "https://localhost",
                "https://tracer.socialmail.in"
            ],
            "problemMatcher": []
        }
    ]
}