Giter Club home page Giter Club logo

Comments (5)

arvind avatar arvind commented on August 18, 2024

Interestingly, if I switch the interfaces to type aliases, I've found:

  • The same error if each individual legend is an intersection with base legend:
    export type SizeLegend = BaseLegend & {size: string};
    ...
    export type Legend = SizeLegend | ShapeLegend | ...
  • However, no error if the intersection occurs on Legend:
    export type SizeLegend = {size: string};
    ...
    export type Legend = BaseLegend & (SizeLegend | ShapeLegend | ...);

While the latter is also correct, the former (or the interface formulation currently checked in) provides more useful exported types.

from ts-json-schema-generator.

domoritz avatar domoritz commented on August 18, 2024

As with #4, I suspect this is because of the version on NPM. I don't get this error.

from ts-json-schema-generator.

domoritz avatar domoritz commented on August 18, 2024

Seeing the same issue when I use the full typings.

from ts-json-schema-generator.

domoritz avatar domoritz commented on August 18, 2024

The problem seems to be that we actually need a larger stack.

node --stack-size=100000 dist/typescript-to-json-schema.js --path /Users/domoritz/Developer/UW/vega-parser/typings/legend.ts --type Legend

Works fine.

from ts-json-schema-generator.

domoritz avatar domoritz commented on August 18, 2024

After looking at this in more depth, I can't think of a fix that does not involve some non-trivial rewrite of the formatting logic. Please increase the stack size.

from ts-json-schema-generator.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.