Jeongho Nam
Jeongho Nam
Asking for something that can't be done won't help anything. Close this issue.
`typia.json.schema()` function returns `OpenApi.IJsonSchema` type, a specification of 2020-12 draft. The OpenAPI v3 schema is returned only when you configure like `typia.json.schema()`.
Currently, to make monorepo SDK generation working, you should generate SDK library per each package. If you want to make it advance, can you give me a reproducible repo?
> > Currently, to make monorepo SDK generation working, you should generate SDK library per each package. > > If you want to make it advance, can you give me...
It is not working in the formal `[email protected]` release either.
Needs reproducible repo
Close due to no reproducible repo providing.
You're right, I did a mistake on the version specification. However, TS 5.0 breaks `ttypescript` too, even when fixing the version checking error. The error comes from `tsm.createProgram` became a...
This problem is based on TS 5.0 has changed target build option from `es5` to `es2018`. Such break change invalidates key logic of `ttypescript`. I wrote an issue about that...
> Also interestingly: > > ```ts > // This will generate > export type InArray = > | [TVal] > | [unknown, TVal] > | [TVal, unknown]; > > //...