Twoslash
This feature integrate
All of the Typescript code blocks would provide inline type hover.
Enable twoslash
- Install @sveltepress/twoslash package
npm install --save @sveltepress/twoslash
- Config
highlighter.twoslash
totrue
import { defineConfig } from 'vite'
import { sveltepress } from '@sveltepress/vite'
import { defaultTheme } from '@sveltepress/theme-default'
export default defineConfig ({
plugins : [
sveltepress ({
theme : defaultTheme ({
highlighter : {
twoslash : true
}
})
})
]
})
Basic type annotation
const foo = false
const obj = {
a : 'a',
b : 1
}
```ts
const foo = false
const obj = {
a: 'a',
b: 1
}
```
Errors
const foo : Foo = null
const a: number = '1'
```ts
// @errors: 2304 2322
const foo: Foo = null
const a: number = '1'
```
Queries
const hi = 'Hello'
const msg = `${hi }, world`
//
//
Number .p arseInt ('123', 10)
//
//
//
//
```ts
const hi = 'Hello'
const msg = `${hi}, world`
// ^?
//
//
Number.parseInt('123', 10)
// ^|
//
//
//
//
```
Custom logs
const a = 1Custom log message
const b = 1Custom error message
const c = 1Custom warning message
Custom annotation message
```ts
// @log: Custom log message
const a = 1
// @error: Custom error message
const b = 1
// @warn: Custom warning message
const c = 1
// @annotate: Custom annotation message
```
Cut codes
cut before
use // ---cut---
or // ---cut-before---
can cut all codes before this line
console .log (level )
```ts
const level: string = 'Danger'
// ---cut---
console.log(level)
```
cut after
use // ---cut-after---
can cut all codes after this line
console .log (level )
```ts
const level: string = 'Danger'
// ---cut-before---
console.log(level)
// ---cut-after---
console.log('This is not shown')
```
cut start/end
use // ---cut-start---
and // ---cut-end---
to cut contents between them
const level : string = 'Danger'
console .log ('This is shown')
```ts
const level: string = 'Danger'
// ---cut-start---
console.log(level) // This is not shown.
// ---cut-end---
console.log('This is shown')
```
Twoslash for svelte
<script>
import { onMount } from 'svelte'
let count = 0
onMount (() => {
console .log ('mount')
})
</script>
<button on:click="{count ++}">
Count is: { count }
</button>