reflec-ts icon indicating copy to clipboard operation
reflec-ts copied to clipboard

TypeScript compiler with Reflection capabilities

Results 5 reflec-ts issues
Sort by recently updated
recently updated
newest added

Using reflec-ts 0.3.9 with Node 8.6.0. I have the following basic project structure: **src/tests.js** ```ts class testClassA { a: string } console.log(new testClassA()); ``` **tsconfig.json** ```json { "compileOnSave": true, "include":...

Hello, thank you for this project. Now we can write somthng like this ``` javascript interface UiButtonProps { description: string; } for (let member of UiButtonProps.members) { let memberDescription =...

discussion

Read `target` and `module` options in `compilerOptions` when emitting Reflection.js. For example, there is no need to do environment checks like `typeof module == 'object' ...` if we are targeting...

enhancement

Implement dynamic class loading in `classForName`. We want to achieve something like this ``` TypeScript let clazz = Reflection.classForName("folder1.folder2.sourceFile#module1.MyClass"); let ctor = clazz.getConstructor(); let obj = new ctor(); ``` Note...

enhancement
help wanted
discussion

Remove common runtime parts from Reflection.js and make a new npm library `reflec-ts-runtime` that can be included as runtime dependency.

enhancement