I want "tasks: Allow Automatic Tasks In Folder" to be enabled by default when i open a project
this is the tasks.json
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "gulp",
"runOptions": {
"runOn": "folderOpen"
}
}
]
}
it runs on start but only if i call "tasks: Allow Automatic Tasks In Folder" via cmd+shift+p and reopen the project
i need this to be enabled by default. How can i do that ?
"runOn": "default"
option do what you want? – Misfit"runOn": "folderOpen"
. – MisfitTasks: Manage Automatic Tasks in Folder
then you can selectAllow Automatic Tasks in Folder
– TroopshipAllow Automatic Tasks in Folder
, it works every time you open the folder. – Ssm