-
Notifications
You must be signed in to change notification settings - Fork 71
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
Option to disable resolve.conditionNames check #228
Comments
Same problem here with OpenLayers. I don't really understand how path aliases work and how this may interfere with OpenLayers (and other libraries), but for me this seems like a more involved problem to address. If it helps, I can create a repo to reproduce this. Please let me know.
|
@dummdidumm We do have a similar issues with this check in my project.
I also notice that at least for configuration files written in TS this conditional return false even if the configuration is a function: typeof config // { default: [Function (anonymous)] } Thanks for your support. |
Hey @dummdidumm, I'm having a similar issue with our package that provides basic support for Svelte compilation in Laravel Mix. Since many of our users have requested it, we have added support for svelte-loader, so that the end users can extend the configuration without us having to support a large API surface area. This is the issue that got opened a few weeks back: The compilation itself doesn't fail, yet the warning is displayed, even though the configuration passed on by the user is correctly applied to the file. (thanks again @alesvaupotic for source-diving the configuration) So far, the issue identified by @giamir seems to be the culprit for it, namely bullet point one:
Thanks, |
Same issue here. I think the issue is that requiring our
|
I had the same error with these packages after adding
and I'm using Symfony Encore to build my webpack.config.js file.
and now the warning + the 3 errors are gone. Maybe this helps someone. EDIT: It seems like |
Hit this issue too. Here's the solution. 🙂 |
@morpheus7CS Sorry for the late response. Configuring it like
solves the issues. For a quick test I reverted back to |
The documentation states:
I don't use any external Svelte components, and this explodes my webpack build output with errors from both Svelte and zip-js that look like:
Adding the
fullySpecified: false
check for svelte as mentioned in the README seems to solve the svelte errors, but I can't work out the right syntax to fix zip-js, so I'd just like to disable the warning entirely.The text was updated successfully, but these errors were encountered: