Roman Jámbor
Roman Jámbor
Should be fixed in `[email protected]` and `[email protected]`. Also there was some trouble with `typelib` mode in nodenext module, cuz of code related to ts-node. Hope it'll be okay.
@avin-kavish Do you test it with ttsc or ts-node? _I found some note - from another contributor solving issues for ts-node - saying that ts-node has some issues with extensions...
I'm working on it. 👍
I'm sorry @ciricc, idk how but I missed this issue. --- This is a little odd case. `type` is always resolved to its definition but in case of `Record`, its...
@ciricc Test `[email protected]` and `[email protected]`. Records, Omit and other features creating type aliases should be supported. Combination of properties and indexes is generated. Indexes are no more part of properties...
Record `Record` will be generated as index `[key: string]: SchemaFields`, so: ```typescript type T = Record; const t = getType(); const index = t.getIndexes()[0]; console.log(index.keyType.name); // string console.log(index.type.name); // SchemaFields...
Hi @AbdulRafaySiddiqui, TY. Something like this? https://stackblitz.com/edit/tst-reflect-example-get-default-values?file=index.ts
Implemented in `the Next` version.
@Igorjan94 Yes, it is not implemented in the current version 0.x, but it is implemented in the new rewriten version of this package (I call it `The Next` version), which...