Create tasks in Visual Studio Code per user
问题 When I created a Node task for Visual Studio Code it created a tasks.json file inside the .settings folder for the folder that you have open (node-app in this case as shown in the image below). ie: it creates a task per folder. { "version": "0.1.0", "command": "node", "isShellCommand": true, "args": ["${file}"] } My question is how do you create a task per user rather than a project based task so that I can execute the node code from any folder rather that having to create the same task for