ts-transformer-json-schema
A TypeScript custom transformer to obtain json schema for fastest-validator from TypeScript interface
$ npm install ts-transformer-json-schema --save
Requirement
TypeScript >= 2.4.1 TTypeScript
How to use directly with fastest-validator
;; ;v.validate, schema;
How to use with Moleculer
;
There is moleculer template that comes with this transformer and configure compiler to use it: https://github.com/ipetrovic11/moleculer-template-typescript
How to use the custom transformer
Unfortunately, TypeScript itself does not currently provide any easy way to use custom transformers (See https://github.com/Microsoft/TypeScript/issues/14419).
For ttypescript
See ttypescript's README for how to use this with module bundlers such as webpack or Rollup.
// tsconfig.json
What can be transformed
Currently transformer can handle:
-
Interfaces
-
Neasted interfaces
-
Extended interfaces
-
Intersections and Unions
-
Enums
-
Emails - Predefined - IEmail
-
Dates - Predefined - IDate
-
UUID - Predefined - IUUID
-
Forbidden - Predefined - IForbidden
-
Additional properties
Take a look at tests for all possibilities. All cases from fastest-validator should be covered, if not please report the issue.
License
MIT