mirror of https://github.com/sveltejs/svelte
chore: handle option warnings the same as others (#11303)
parent
f6dfac985c
commit
eea5c8ff95
@ -1,3 +1,23 @@
|
|||||||
## missing_custom_element_compile_option
|
## options_deprecated_immutable
|
||||||
|
|
||||||
The 'customElement' option is used when generating a custom element. Did you forget the 'customElement: true' compile option?
|
The `immutable` option has been deprecated. It will have no effect in runes mode
|
||||||
|
|
||||||
|
## options_missing_custom_element
|
||||||
|
|
||||||
|
The `customElement` option is used when generating a custom element. Did you forget the `customElement: true` compile option?
|
||||||
|
|
||||||
|
## options_renamed_ssr_dom
|
||||||
|
|
||||||
|
`generate: "dom"` and `generate: "ssr"` options have been renamed to "client" and "server" respectively
|
||||||
|
|
||||||
|
## options_removed_enable_sourcemap
|
||||||
|
|
||||||
|
The `enableSourcemap` option has been removed. Source maps are always generated now, and tooling can choose to ignore them
|
||||||
|
|
||||||
|
## options_removed_hydratable
|
||||||
|
|
||||||
|
The `hydratable` option has been removed. Svelte components are always hydratable now
|
||||||
|
|
||||||
|
## options_removed_loop_guard_timeout
|
||||||
|
|
||||||
|
The `loopGuardTimeout` option has been removed
|
||||||
|
Loading…
Reference in new issue