Create tasks in Visual Studio Code per user -


when created node task visual studio code created tasks.json file inside .settings folder folder have open (node-app in case shown in image below). ie: creates task per folder.

{     "version": "0.1.0",     "command": "node",     "isshellcommand": true,     "args": ["${file}"] } 

enter image description here

my question how create task per user rather project based task can execute node code folder rather having create same task each folder open in visual studio code.

also how execute individual files without opening folder.


Comments

Popular posts from this blog

twig - Using Twigbridge in a Laravel 5.1 Package -

jdbc - Not able to establish database connection in eclipse -

firemonkey - How do I make a beep sound in Android using Delphi and the API? -