Derek Wickern

Results 62 comments of Derek Wickern

I tried debugging from IntelliJ for a bit, it works quite well. Debugging through sourcemaps is not perfect, especially arrow functions. The generated sourcemaps look perfect; Chrome might be the...

This is the specific error I get loading my 15 MB `vendor.js.map`. ``` 2016-12-09 13:11:46,318 [ 393215] ERROR - jetbrains.rpc.CommandProcessor - File too big java.io.InputStreamReader@481e1976 com.intellij.openapi.util.io.FileTooBigException: File too big java.io.InputStreamReader@481e1976...

This LGTM, all that's left are some docs describing how to use this

I would much rather have auto imports like in JVM languages, but not sure if that will ever happen... I noticed IntelliJ supports javascript auto-import already in some cases. If...

The auto imports work for typescript... I can't get it working for javascript sources. It autocompletes global declarations but won't import from an ambient module.

@anstarovoyt this is what I'm testing with: ```ts // ember.d.ts declare module "@ember/component" { export class Component {} } ```

Also `foo/bar` in `{{component "foo/bar"}}` and `{{my-component subComponent=(component "foo/bar")}}`

The `http-mock` blueprint should work once #98 lands.

You're right, we don't index the modules in `/app/utils`. Utils should be included in the search since it's an official module type: https://ember-cli.com/user-guide/#module-directory-naming-structure We will need define `UTIL` in [EmberFileType](https://github.com/Turbo87/intellij-emberjs/blob/1e2eb7247d0ed4a12bcc40d259d5ee3877e8b8ab/src/main/kotlin/com/emberjs/EmberFileType.kt)...