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 ?