-
-
Notifications
You must be signed in to change notification settings - Fork 210
feat: TypeScript 5.4 support for svelte-check #2313
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
8cac84d
b4d7fa2
0a8f692
4076d61
35510ed
2095372
87ae792
bbc69e1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<script lang="ts"> | ||
export let value: 'foo' | 'bar'; | ||
</script> | ||
|
||
<button on:click={() => value = 'foo'}>foo</button> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<script lang="ts"> | ||
import Component from './Component.svelte'; | ||
|
||
let checked = false; | ||
let value: 'foo' | 'bar' = 'foo'; | ||
</script> | ||
|
||
<input type="checkbox" bind:checked> | ||
|
||
{#if checked === true} | ||
checked | ||
{/if} | ||
|
||
{#if value === 'bar'} | ||
bar | ||
{/if} | ||
|
||
<Component bind:value></Component> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.