typescript-json-schema icon indicating copy to clipboard operation
typescript-json-schema copied to clipboard

Generate json-schema from your Typescript sources

Results 108 typescript-json-schema issues
Sort by recently updated
recently updated
newest added

This package currently uses `glob`9.0.0

I am getting this warning: ```shell $ npm install npm WARN deprecated [email protected]: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you...

you get the error `T: Type "T" has multiple definitions` in this example: ``` import { T as OtherT } from './other.js'; export type T = OtherT & { a:...

we have some dependencies to not-exported types in our json schema. these types get an "alias" name in the generated json schema that changes every time the types are re-generated....

Example - https://stackblitz.com/edit/stackblitz-starters-8zhuuy?file=types.ts,validate-schema.js. Run `npm run generate-schema` in console. Typescript compilation doesn't give any error but schema generation does: ``` Type 'readonly X[]' does not satisfy the expected type 'X[]'....

Resolves #617 Please: - [x] Make your pull request atomic, fixing one issue at a time unless there are many relevant issues that cannot be decoupled. - [x] Provide a...

When generating definitions for generic types (say Foo), $ref urls to them may be invalid URL, as `#/defintions/Foo` should be escaped to be considered a valid fragment. It should be...

Hello, first of all great job with the library. I recentrly updated from 0.56.0 to 0.60.0 and suddenly keyof stopped resulting in an union and I don't understand why. This...