-
-
Notifications
You must be signed in to change notification settings - Fork 116
Multiple merging has TypeScript error #112
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
Milestone
Comments
Same as #110 |
I create a PR |
|
This will get fixed in v5 (ported to TS). |
@bebraw Hi, what's the progress of v5 and how can I help? |
Hi,
I have the work at develop branch in case you want to check the status and try it out. I think I will break the basic merge function in two next to get proper return types instead of any.
… On 30. Jun 2020, at 6.12, Xianming Zhong ***@***.***> wrote:
@bebraw Hi, what's the progress of v5 and how can I help?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The example (https://github.com/survivejs/webpack-merge#multiple-merging) for multiple merging gives the following TypeScript error:
Type '{ server: { target: string; output: { path: string; filename: string; }; }; client: { output: { path: string; filename: string; }; }; }' has no properties in common with type 'Configuration'.
The
Configuration
interface imported from webpack (@types/webpack) doesn't allow for server/client object keys. Something like the following could allow for this:The text was updated successfully, but these errors were encountered: