We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9870638 commit a071bb8Copy full SHA for a071bb8
1 file changed
packages/cli/src/migration/migrator.ts
@@ -683,8 +683,11 @@ function cleanupDeprecatedTsconfigOptions(
683
}
684
685
686
-// Svelte is intentionally excluded: @sveltejs/vite-plugin-svelte and svelte-check handle
687
-// .svelte file types automatically. No env.d.ts shim is needed or documented officially.
+// .svelte files are handled by @sveltejs/vite-plugin-svelte (transpilation)
+// and svelte-check / Svelte Language Server (type checking).
688
+// Module resolution for `.svelte` imports is typically set up by the
689
+// project template (e.g. src/vite-env.d.ts in Vite svelte-ts, or
690
+// auto-generated tsconfig in SvelteKit) rather than this file.
691
// https://svelte.dev/docs/svelte/typescript
692
export type Framework = 'vue' | 'astro';
693
0 commit comments