-
Is there something inherently bad about it? What should I consider before enabling it? Unfortunately the docs do not answer this. |
Beta Was this translation helpful? Give feedback.
Answered by
brunnerh
Apr 11, 2025
Replies: 1 comment 1 reply
-
Svelte 5 has basic TypeScript support built-in without the need for a pre-processor. So the main questions are whether you need those features and whether the loss in performance due to additional processing is acceptable. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
gyzerok
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Svelte 5 has basic TypeScript support built-in without the need for a pre-processor.
You only need it for features that need more that type erasure (e.g. its
enum
keyword).So the main questions are whether you need those features and whether the loss in performance due to additional processing is acceptable.