label | string | The name of the task as it appears in the VS Code UI. This is automatically generated but can be changed. |
type | string | (Required) The task type, which identifies the task’s function. It should not be changed. |
target | string | (Required) The name of the build target, as defined in your project.sigasi file, that you want to process. |
watch | boolean | If set to true, the task will remain active and automatically re-run whenever a relevant source file is changed. Defaults to false. |
runOptions | object | Standard VS Code property to configure when the task runs. For example, to make it run when a folder is opened, set it to { "runOn": "folderOpen" }. See the official documentation for more options. |
logLevel | string | Controls the verbosity of the task’s log output. Can be one of "critical", "standard" (default), or "verbose". |