Skip to content

Emitter usage

  1. Via the command line
Terminal window
tsp compile . --emit=@azure-tools/typespec-go
  1. Via the config
emit:
- '@azure-tools/typespec-go'

The config can be extended with options as follows:

emit:
- '@azure-tools/typespec-go'
options:
'@azure-tools/typespec-go':
option: value

Type: absolutePath

Defines the emitter output directory. Defaults to {output-dir}/@azure-tools/typespec-go See Configuring output directory for more info

Type: string

Semantic version of azcore without the leading ‘v’ to use if different from the default version (e.g. 1.2.3).

Type: boolean

When true, unmarshalers will return an error when an unknown field is encountered in the payload. The default is false.

Type: string

Optional prefix to file names. For example, if you set your file prefix to “zzz*”, all generated code files will begin with “zzz*”.

Type: boolean

When true, enables generation of fake servers. The default is false.

Type: boolean

When true, HEAD requests will return a boolean value based on the HTTP status code. The default is false.

Type: boolean

Enables generation of spans for distributed tracing. The default is false.

Type: string

The name of the Go module written to go.mod. Omit to skip go.mod generation. When module is specified, module-version must also be specified.

Type: string

Semantic version of the Go module without the leading ‘v’ written to constants.go. (e.g. 1.2.3). When module-version is specified, module must also be specified.

Type: boolean

When true, properties that are untyped (i.e. raw JSON) are exposed as []byte instead of any or map[string]any. The default is false.

Type: boolean

When true, slice elements will not be pointer-to-type. The default is false.

Type: boolean

Indicates package has a single client. This will omit the Client prefix from options and response types. If multiple clients are detected, an error is returned. The default is false.

Type: string

Uses the specified value to remove stuttering from types and funcs instead of the built-in algorithm.

Type: boolean

When true, fix stuttering for const types and values. The default is false.

Type: boolean

Deprecated. Use generate-samples instead.

Type: boolean

When true, generate example tests. The default is false.

Type: boolean

When true, the NewClientFactory constructor gathers all parameters. When false, it only gathers common parameters of clients. The default is true.