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

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -