Skip to content

Commit a7a88c6

Browse files
committed
docs: enhance TypeScript migration guide
Clarify and expand on some points
1 parent afb80ae commit a7a88c6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/migration-guide.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ In `v4`, your TypeScript code will only be transpiled into JavaScript, with no t
9696

9797
- Svelte 4 or higher is required now
9898
- Node 18 or higher is required now
99-
- When using TypeScript, the minimum required version is now 5.0, `"verbatimModuleSyntax": true` is now required in your `tsconfig.json`, and the mixed imports transpiler (`handleMixedImports`) was removed
99+
- When using TypeScript, the minimum required version is now 5.0
100+
- When using TypeScript, `"verbatimModuleSyntax": true` is now required in your `tsconfig.json` (instead of the deprecated `preserveValueImports` and `importsNotUsedAsValues` options). As a consequence, the mixed imports transpiler (`handleMixedImports`) was removed from the TypeScript preprocessor. This means that you now need to specify for each import if it's a type or value import. For example instead of `import { value, Type } from 'somewhere'` you now need to write `import { value, type Type } from 'somewhere'`
100101
- The `preserve` option was removed as it's obsolete
101102
- The default export is deprecated in favor of its new named export:
102103

0 commit comments

Comments
 (0)