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
N/A
webpack-dev-server is being used directly to export types: export interface DevServer extends webpackDevServer.Configuration {
export interface DevServer extends webpackDevServer.Configuration {
But webpack-dev-server isn't a direct dependency so TS fallbacks to Any for webpackDevServer.Configuration. I'm using pnpm v8.
webpackDevServer.Configuration
will provide if needed
install rspack without directly install webpack dev server. Consume RspackDevServerOptions and notice webpack config are Any.
RspackDevServerOptions
The text was updated successfully, but these errors were encountered:
LingyuCoder
No branches or pull requests
System Info
N/A
Details
webpack-dev-server is being used directly to export types:
export interface DevServer extends webpackDevServer.Configuration {
But webpack-dev-server isn't a direct dependency so TS fallbacks to Any for
webpackDevServer.Configuration
.I'm using pnpm v8.
Reproduce link
will provide if needed
Reproduce Steps
install rspack without directly install webpack dev server. Consume
RspackDevServerOptions
and notice webpack config are Any.The text was updated successfully, but these errors were encountered: