Files
tools/docs/vitest.config.ts
T
robonen 09433415b6 feat(docs): doc-sections system, crdt package, MCP server, and responsive fixes
Adds a hand-authored .vue doc-sections system (intro + guide pages per package, #docs/sections map, sidebar Guide group, client-side TOC), registers @robonen/crdt, renders demos client-only, base64-encodes the server-metadata virtual, plus the MCP docs endpoint and responsive/overflow fixes across pages and tables.
2026-06-08 15:52:03 +07:00

11 lines
290 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
// Only the build-time tooling (extractor / MCP server) is unit-tested here;
// the Nuxt app itself is covered elsewhere.
include: ['modules/**/*.test.ts'],
environment: 'node',
},
});