| 9 | export type AutoPreprocessOptions = NonNullable<Parameters<typeof sveltePreprocess>[0]>; |
| 10 | |
| 11 | export interface SvelteLoaderOptions { |
| 12 | compilerOptions?: Omit<CompileOptions, 'filename' | 'format' | 'generate'>; |
| 13 | /** |
| 14 | * Extra HMR options, the defaults are completely fine\ |
| 15 | * You can safely omit hotOptions altogether |
| 16 | */ |
| 17 | hotOptions?: { |
| 18 | /** Preserve local component state */ |
| 19 | preserveLocalState?: boolean; |
| 20 | [key: string]: unknown; |
| 21 | }; |
| 22 | [key: string]: unknown; |
| 23 | } |
| 24 | |
| 25 | export type PluginSvelteOptions = { |
| 26 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…