Tobias Bieniek

Results 665 comments of Tobias Bieniek

@denofevil can you comment on that file size limit? this might become a problem for larger apps.

@denofevil it is served by an express server using `broccoli-middleware` and at least in theory it should be served including the `Content-Length` header (see https://github.com/ember-cli/broccoli-middleware/blob/v0.18.1/lib/middleware.js#L100) I'll try and verify this...

here is what wireshark shows me: ``` HTTP/1.1 200 OK\r\n X-Powered-By: Express\r\n Last-Modified: Tue, 13 Dec 2016 09:17:35 GMT\r\n Cache-Control: private, max-age=0, must-revalidate\r\n Content-Type: application/json\r\n Vary: Accept-Encoding\r\n Content-Encoding: gzip\r\n Date:...

@denofevil I'll look into that. Thanks for the feedback!

it appears that this is not supported by the [`compression`](https://github.com/expressjs/compression) middleware (see https://github.com/expressjs/compression/issues/52) and maybe for a good reason after reading that thread... 🤔

the sourcemaps that Ember CLI produces by default are only mapping the ES-latest transforms, but not the AMD modules transform. @dwickern worked on making that configurable, but if I remember...

@vlascik to be honest I'd rather just have the IDE suggest the right import automatically instead of adding snippets that you would have to manually invoke

> Maybe all we need is typescript definitions for the new ember modules Not sure if those are auto-imported in JS files too, but for TS files that should probably...

@denofevil any clue how we can make this work in JS files?