In a project i use typescript to generate es6 for server side (node.js) and es5 for client side. I've got a tsconfig.json and a tsconfigclient.json. I've got two task in tasks.json to generate javascript :
{
    "version": "2.0.0",
    "tasks": [
        {
            "type": "typescript",
            "tsconfig": "tsconfig.json",
            "problemMatcher": [
                "$tsc"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        },
        {
            "type": "typescript",
            "tsconfig": "tsconfigclient.json",
            "problemMatcher": [
                "$tsc"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ]
}Both could be run whith ctrl-shift-B ... but vscode ask me witch one to use ? Is it possible to launch both in same time with ctrl-shift-b
Thanks. PS : I'm begginer in node.js, typescript and vscode.
 
    