返回 slidev
configs.ts
根目录 / packages / vscode / src / configs.ts
1 import { defineConfig } from 'reactive-vscode'
2
3 export const config = defineConfig<{
4 'force-enabled': boolean
5 'port': number
6 'annotations': boolean
7 'annotations-line-numbers': boolean
8 'preview-sync': boolean
9 'include': string[]
10 'exclude': string
11 'dev-command': string
12 }>('slidev')
13
13 lines TYPESCRIPT