-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
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
Doesn't resolve directory aliases #19
Comments
Any update on this? |
Got this issue today. |
up 👀 |
deadfile/src/models/Parsables.js Line 1 in ba8c6db
|
Can support webpack config? |
I encountered this issue and I resolved by this way: Replace all import 'alias' to your absolute path. eg: '.src/' -> '/Users/workstation/Development/example/mobile/src/' |
In our alias: {
client: path.resolve(__dirname, './client/')
} |
Hey there,
in our project we use
module-resolver
with directory aliases, the config looks like this:but when running deadfile we get the following error:
Looks like the problem is enhanced-resolver doesn't understand that /src refers to a directory (and not a file), and is trying to find a specific file in there.
Any ideas?
Thanks
The text was updated successfully, but these errors were encountered: