UNPKG

vite-plugin-qingkuai

Version:

vite-plugin-qingkuai is a Vite plugin that transforms `.qk` component files into native JavaScript using the Qingkuai compiler. It enables fast and seamless development of web applications built with [Qingkuai](https://qingkuai.dev).

10 lines (6 loc) 187 B
import { Plugin } from 'vite'; type InitOptions = Partial<{ maxScheduleDepth: number; }>; declare function qingkuai(options?: InitOptions): Plugin; export { qingkuai as default };