vega / ts-json-schema-generator

Generate JSON schema from your Typescript sources

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

`export * as` doesnt gets ignored

royAmmerschuber opened this issue · comments

With two files

///--- a.ts ---
interface Foo{
    bar:string
}

///--- b.ts ---
export * as Bar from "./a"

if I run

npx ts-json-schema-generator -p b.ts

Then it outputs an empty schema without any definitions.

I would expect it to expose the type Bar.Foo.

Hi! Thanks for opening this PR.

Would you like to work on a PR? Remember to add unit tests :)