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

timeout - Handshake_timeout on RabbitMQ using python and pika from remote vm -

gcc - MinGW's ld cannot perform PE operations on non PE output file -

c# - Search and Add Comment with OpenXML for Word -