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
'@lwc/ssr-runtime'
In core, this Rollup warning is treated as an error:
LWC1002: Error in module resolution: "api", "track" and "wire" are imported from external module "@lwc/ssr-runtime" but never used in `foo.js`
This happens because sometimes we are sloppy about doing e.g.:
import { api } from '@lwc/ssr-runtime'
... in the output .js files from the @lwc/ssr-compiler, even though api may be unused.
.js
@lwc/ssr-compiler
api
We should clean this up and ensure that all of our imports are actually used.
The text was updated successfully, but these errors were encountered:
This issue has been linked to a new work item: W-17152250
Sorry, something went wrong.
No branches or pull requests
In core, this Rollup warning is treated as an error:
This happens because sometimes we are sloppy about doing e.g.:
... in the output
.js
files from the@lwc/ssr-compiler
, even thoughapi
may be unused.We should clean this up and ensure that all of our imports are actually used.
The text was updated successfully, but these errors were encountered: