ts-json-schema-generator icon indicating copy to clipboard operation
ts-json-schema-generator copied to clipboard

`export * as` doesnt gets ignored

Open royAmmerschuber opened this issue 1 year ago • 1 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.

royAmmerschuber avatar Sep 04 '24 13:09 royAmmerschuber