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

Steps to Reproduce: version: 0.59.0 create schema for `Foo` type, and turn on the flag `noExtraProps`. ```ts interface ChildFoo {} interface Foo { childFoo: Foo & ChildFoo; } ``` The...

Great library, thanks so much. When I have a required field which has type of a union which is itself defined as a type, the field is just a ref...

The following TypeScript: ``` // index.ts export type ObjectWithStringKeysAndValues = { [key: string]: string; }; ``` Leads to the expected output when called without any configuration options: ``` $ npx...

With the 0.5x versions of this package, the following will fail to compile with the `--uniqueNames` option: ```typescript export interface IBulkOperationEntity { entity: EntityIdentifier; opts?: BulkOptions; } export interface IBulkOperation...

According to the README you are supposed to be able to filter by fully qualified type name, however I cannot see how it would operate from looking at the code....

# Description When you export an enum with one value it maps to a constant in the schema, but I expect it to map to an enum with one element....

typescript-json-schema throw Error: 2 definitions found for requested type "Props". one Props from my component definition, another is from the npm modules, how to external the node_modules definitions

Hi, Given that I have `Entity.ts`: ``` typescript export enum Entity { firstValue, secondValue } ``` **Then I execute:** ``` bash typescript-json-schema Entity.ts * ``` **Expected Result:** ``` json {...

We are using the `JsonValue` type from `@angular-devkit/core` which looks like this ```ts export interface JsonArray extends Array { } export interface JsonObject { [prop: string]: JsonValue; } export type...

Bumps [get-func-name](https://github.com/chaijs/get-func-name) from 2.0.0 to 2.0.2. Release notes Sourced from get-func-name's releases. v2.0.2 What's Changed Revert previous changes that shipped this as an ES module. Full Changelog: https://github.com/chaijs/get-func-name/commits/v2.0.2 v2.0.1 What's...

dependencies