71c517b79f
Provides render() for integration testing — async with auto-flush, trimmed frames, fake terminal with resize(), stdin.write() with auto-flush, and auto-cleanup via afterEach. Exports: render, cleanup, RenderResult, RenderOptions, Terminal Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
15 lines
281 B
TypeScript
15 lines
281 B
TypeScript
import { defineConfig } from "vite-plus";
|
|
import vueJsx from "@vitejs/plugin-vue-jsx";
|
|
|
|
export default defineConfig({
|
|
plugins: [vueJsx()],
|
|
pack: {
|
|
dts: { tsgo: true },
|
|
exports: true,
|
|
},
|
|
lint: {
|
|
options: { typeAware: true, typeCheck: true },
|
|
},
|
|
fmt: {},
|
|
});
|