Coldbox elixir-module.js define alias

I’m trying to create a module and compile assets using coldbox elixir.

I have defined defined elixir-module.js in my module, but when I try to compile, I got error module not found.

I’m using alias to import module:

`

import store from ‘@/stores/myStore.js’;

`

However the path is not found.

How can I define an alias only for my module?

I believe the alias is @moduleName in an alias. `@` would still point to the root.

Yes, it's correct. I will add this info to docs.

Thanks