Lorefnon

Results 65 comments of Lorefnon

Until this feature becomes a part of the language, it is possible to get something very similar through [yaml-to-js.macro](https://github.com/lorefnon/yaml-to-js.macro)

Thank you. I think primarily we need a way to bypass imba's custom slot system and be able to use native custom element slots (which doesn't seem possible atm)

I have a suggestion for this but that may entail a breaking change: ```typescript const IPerson = InterfaceType("IPerson", { ... }) const Person = ObjectType({ ... }) // Or ObjectType("Person",...

I have been working on [an example application](https://github.com/lorefnon/bugbox) for personal evalation. It is very early prototype but features client-server JWT auth. I plan to integrate hierarchical role based authorisation in...

Sure, will do. I just realized that `@Guard` no longer exists in master. I will update my example to use `@Before` and create a PR shortly.

> using websockets together with async interators in production could be a very explosive mixture. Can you please elaborate more on what these concerns are ? Or provide links to...

The package `rm-json-schema-to-typescript` does not seem to resolve this issue esp. when array item contains a ref. ``` { properties: { events: { type: 'array', items: { $ref: 'models/Event.json', $id:...

@prk3 If you specify `loadExtensions: ['.js']` in the config for production env it should work as expected. The default value of loadExtensions comes from [here](https://github.com/knex/knex/blob/master/lib/migrate/sources/fs-migrations.js#L6-L16) which will have to be...

@abcd-ca You can use: ``` TS_NODE_COMPILER_OPTIONS='{ "module": "commonjs" }' knex migrate:latest ``` knex uses ts-node's require hook for `.ts` extension and that can accept TS compiler options through `TS_NODE_COMPILER_OPTIONS` env...

@abcd-ca Yes, that certainly looks like a cleaner approach.