Aleksander Barszczewski

Results 9 comments of Aleksander Barszczewski

Hmm so you advice to use browserify to make single file bundle and completely ignore node_modules?

Thanks I will try it. I never thought about browserifying server side code, always used pure babel to just transpile sepearate files, but in lambda environment it sounds reasonable.

👍 This would be awesome - currently it's not possible to document a library with documentation.js since it puts all methods/members of modules in to the project root instead of...

@tmcw I can't find proper way to configure documentation by using documentation.yml. For example in my code I have documented class Store with some methods. It's included in documentation correctly....

```js // types.js export const MyType = 123 // store.js export class Store {} // index.js export Store from './store' export * as types from './types' // usage import {...

@dgreene1 Hmm, right now we heavily depend on typescript-rest-swagger, already on prod. Are there any major differences between typescript-rest-swagger and tsoa? One difference that I see is that typescript-rest (not...

Same issue here. Workaround is to include missing model in controller file without using '@' in path - just with normal "dot hell" path.

In my app user may dynamically set routing. For example he has three predefined components A, B and C; In the application (in browser :) he can manage route configuration;...