We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I use lerna to manage my project.and the nodejs server is one of packages. I run the script on the root
npm run my-server dev
and it return a error :
Error: Cannot find module '@/...'
The text was updated successfully, but these errors were encountered:
Same problem here. Did someone find a solution?
Sorry, something went wrong.
For now, you can use like that:
`import { init } from 'module-alias;
init({ base: 'Path to your package.json' }); `
do not use import 'module-alias/register, as said here https://github.com/ilearnio/module-alias#using-within-another-npm-package
import 'module-alias/register
No branches or pull requests
I use lerna to manage my project.and the nodejs server is one of packages. I run the script on the root
and it return a error :
The text was updated successfully, but these errors were encountered: