Liking cljdoc? Tell your friends :D
ClojureScript only.

dots.vscode.task-definition

A structure that defines a task kind in the system. The value must be JSON-stringifyable.

A structure that defines a task kind in the system.
The value must be JSON-stringifyable.
raw docstring

typecljs

(type task-definition)

The task definition describing the task provided by an extension. Usually a task provider defines more properties to identify a task. They need to be defined in the package.json of the extension under the 'taskDefinitions' extension point. The npm task definition for example looks like this

interface NpmTaskDefinition extends TaskDefinition {
    script: string;
}

Note that type identifier starting with a '$' are reserved for internal usages and shouldn't be used by extensions.

The task definition describing the task provided by an extension.
Usually a task provider defines more properties to identify
a task. They need to be defined in the package.json of the
extension under the 'taskDefinitions' extension point. The npm
task definition for example looks like this
```typescript
interface NpmTaskDefinition extends TaskDefinition {
    script: string;
}
```

Note that type identifier starting with a '$' are reserved for internal
usages and shouldn't be used by extensions.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close