Ben M

Results 53 comments of Ben M

Angular 8 here, still the same issue. I'm not sure if matrix params are supposed to work with arrays at all. Here are my observations: - If you have something...

I like this idea. But maybe there should be one additional piece: Routes as functions: ``` export default { auth: include('/auth', { login: '/login', reset: (token) => { return `/reset/${token}`;...

The main reason behind this idea was, that I'm using TypeScript. And I like to have my IDE telling me what's allowed or not. And the easiest way is having...

Is there then any need for further development of this project? I'm still not sure which to chose for the next react / ts projects...

What do you mean by "absolute imports"?

Oh okay, didn't know that this was possible. I actually don't care about imports at all as long as it works. The IDE provides tools for auto import and refactoring....

VSCode and IntelliJ IDEA / WebStorm. I never had problems with auto imports yet. VSCode sometimes needs a kick/hug if your node_modules folder changes, in order to recognize the packages...

I have this issue, too. TypeScript 3.2.4 with target: es6 / es2015 AngularJS 1.7.6 ng-metadata 4.0.1 ng-annotate-patched 1.9.0 etc. pp. I am 50% sure that I had it working today,...

The 2nd argument of the predicate is the "parent" object. I don't think that "allInputs" as 3rd argument is a good idea in general. I'd go for some kind of...

For maximum flexibility, I really like the `ref` approach. This way, you don't have to rely on the object structure at all. Because you can reference everything you like. But...