ts-json-schema-generator
ts-json-schema-generator copied to clipboard
Generate JSON schema from your Typescript sources
For this idea #1018 This is **same** PR with #1019 , but cause by my Incorrect operation, i have to resbumit this one. #1019 discuss at the bottom. And here...
This is similar to #1038 but with slightly more complex types. ```ts export interface Container { child: Union; } export interface Dummy { x: number; } export interface Silly {...
Great library here! It's been working great for my use cases, with one exception. I'm getting an UnknownNodeError any time there is a template literal type. For example: ``` export...
Hey! We are using `ts-json-schema-generator` for our api validation - but looks like when running `ts-json-schema-generator` with https://github.com/millsp/ts-toolbelt types it generates nothing Hope you can add support for that! types...
Hey, guys, i have an idea; by defaults, export alias and top ref node in defs name looks like this, not friendly to read. i want to rename it by...
I spent a bunch of time trying to debug an error I'm running into while trying to start using this project, and have boiled the issue down to [as minimal...
Hi, I'm trying to move from `typescript-json-schema` to `ts-json-schema-generator`, but I'm seeing this error: ``` Error: Unknown node "Application" (ts.SyntaxKind = 190) at /Users/rohantalip/repo/node_modules/@types/express-serve-static-core/index.d.ts(477,9) ``` I have `"@types/express": "4.16.1"` specified...
Hi there! I have run into a few bugs while trying to generate schemas using recursive mapped types. + Unions are incorrectly merged into a single definition + Comments are...
Generating the schema of a type from a mixin currently throws an error: ## Variant 1 input: ```ts function Mixin() { return class {}; } export class DataBox extends Mixin()...
Hi, thanks for all the hard work on this awesome library! I wanted to report an issue that I noticed with the code below. The issue can be avoided by...