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
I expected this to work without issues (REPL)
<script> export let defaultA = 1 </script> {#each [{a: 2},{b: 3}] as {a = defaultA, b}} {a} {b} {/each}
but I'm getting a compiler warning
App has unused export property 'defaultA'. If it is for external reference only, please consider using export const defaultA (2:12)
export const defaultA
Silence the warning.
None
would make my life easier
The text was updated successfully, but these errors were encountered:
This should be fixed now in 3.45.0 - https://svelte.dev/repl/79c5f5baa2bb4d2781d42b6142365cf4?version=3.45.0
Sorry, something went wrong.
@Conduitry Thanks! I assume the language server will continue to issue this warning until https://github.com/sveltejs/language-tools/blob/master/packages/language-server/package.json is updated to 3.45.0?
bump svelte@3.45.0 to silence warning: MultiSelect has unused export …
f80a7a6
…property 'defaultDisabledTitle' (sveltejs/svelte#6964)
Successfully merging a pull request may close this issue.
Describe the problem
I expected this to work without issues (REPL)
but I'm getting a compiler warning
Describe the proposed solution
Silence the warning.
Alternatives considered
None
Importance
would make my life easier
The text was updated successfully, but these errors were encountered: