Jeongho Nam

Results 144 comments of Jeongho Nam

@thekingofcity Upgrade to `3.3.10`, then your feature will work on. Note that, `is()` becoming `true` is not bug and you must use `equals()` function instead. For reference, `typescript-is` returns always...

@thekingofcity Nope, `3.3.9` doesn't identify the enumeration key type. The reason why `equals()` function of `3.3.9` returns `true` is that the old version considered the object does not have any...

Another library `typescript-json` supports it. https://github.com/samchon/typescript-json#runtime-validators

This library reduces generated code and elapsed time through closure: https://github.com/samchon/typescript-json#runtime-validators

@stevendesu Some features are supported by my libraries https://github.com/samchon/typescript-json/#comment-tags

Not possible, deno does not support transformation

When defining `nestia.config.ts` file, I'll let developer to assign module instance. Then this problem would be solved. ```typescript export interface IConfiguration { module?: object; } ```

Then, I will solve this problem by myself. Thanks for reporting.

@SkyaTura Writing whole DTO without `import` statement is enough possible llike below: - [swagger.json](https://editor.swagger.io/?url=https%3A%2F%2Fraw.githubusercontent.com%2Fsamchon%2Fnestia%2Fmaster%2Fdemo%2Fgeneric%2Fswagger.json) generated by nestia - [typescript-json](https://github.com/samchon/typescript-json) However, need to distinguish which to import or re-write the whole...

@SkyaTura I'd been busy by another open source project. I'll try this on this sunday. However, when `nestia` re-writes all DTO, have you any idea to where those new DTOs...