Andrey Mikhaylov (lolmaus)
Andrey Mikhaylov (lolmaus)
Ran into this *again*. This time it's the `Intl` service from `ember-intl`: we customize it, but the original version gets loaded. This happens only to me and does not happen...
Note that I can't use a different service name like `app/services/intl-custom.ts`. This would resolve the collision, but `ember-intl` tools, such as the `t` template helper, will still be using the...
OK, this seems to be the one: https://github.com/broccolijs/broccoli-persistent-filter/issues/166
Maybe it's possible to manually remove JS files from the build via an in-repo addon?
Well, I'm basically asking if using `broccoli-funnel` in `treeForApp` is too late to remove the offending file from the build.
Another problem with shorthand methods is that they don't warn you on typos. E. g. `foos.map(foo => foo.typo)` will be reported, but `foos.mapBy('typo')` is always fine. I wonder if this...
This seems to resolve it for `compact`: ``` compact(): NonNullable[]; ``` I tried adding to `DefinitelyTyped` but couldn't figure out how to make a failing test case. `dtslint` won't recognize...
`firstObject` and `lastObject` also seem to be typed incorrectly.
Related code in the demo repo: https://github.com/simonihmig/ember-typescript-overloads-decorators-bug/commit/7f3f038e1e5f55b2ed618f479bdf087c14c1947b#diff-96934836c1696c832b0197675373e74f
Hey, @joukevandermaas, I've just run into #427 on Windows. Can you please share the hacks and fixes that you have applied?