- Add support for
fallback_type
, which allows one to specify the type that should be used for unknown types (defaults toany
).
- Add support for
include_files
in the config, which allows one to specify the only files that should be included.
- Add support for
readonly
fields.
- Add support for single
IndexExpr
in type alias, such astype X = Y[string]
.
- Support for generic types for Golang 1.18 and beyond.
- You can now mark pointer type fields as required by adding
,required
to the struct field tag.
- You can now exclude fields with
tstype:"-"
.
First public release.