Build test with Jest fails with `Could not locate module @/something`

In my case I think is related to the building SO and the file names case.

On MAC I can include a file named MyModule.vue even if the file name is myModule.vue, but on UNIX is not possible to find this file.

Another trick is that is not possible just rename the file from myModule.vue to MyModule.vue, because github will just ignore the change. Locally I see the right name, but on the repository the name still wrong, so to really change the name on github I was forced to rename to something completelly different (___MyModule.vue), commit and push, and after thjis aplly the proper name (MyModule.vue)

after this, my builds on unix system worked, Im using DroneCI now.

about the aliases, I didnt have this problem