Vscode breakpoint debugging Node, how to start multiple tasks at the same time?

the configuration of launch.json when debugging Node code with vs code breakpoints is as follows, where path1,path2,path3 is three Node files under the same parent folder (finally corresponding to three bin/www).
now I can start name1,name2,name3 breakpoint debugging according to the drop-down list of breakpoint debugging. What should I do if I want to start multiple breakpoint debugging at the same time?

{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "node",
            "request": "launch",
            "name": "name1",
            "program": path1
        },
        {
            "type": "node",
            "request": "launch",
            "name": "name2",
            "program": path2
        },
        {
            "type": "node",
            "request": "launch",
            "name": "name3",
            "program": path3
        }
    ]
}

{
    "type": "node",
    "request": "launch",
    "name": "nameX",
    "program": pathX
}

pathX pseudo code is as follows

require(path1);
require(path2);
require(path3);
Menu