Files
moeka-project/vitest.config.ts
T
Lilia_Chen 7c45aa86bc feat(stage-godot): rim light (#2032)
## Description

Adds the Godot Stage rim light pipeline and development observation
tooling.

- Replaces the old avatar glow-only compositor path with a staged
post-process compositor.
- Adds avatar-scoped edge light, glow, material overlay, and final
colour mapping stages.
- Implements a dev observation adapter for exporting
viewport/render-stage artefacts.
- Adds visual verification tooling and baseline docs for Godot Stage
rendering work.
- Documents the technical art workflow and rendering effect behaviour.
2026-07-07 05:21:15 +08:00

21 lines
484 B
TypeScript

import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
projects: [
'apps/server',
'apps/ui-server-auth',
'apps/stage-tamagotchi',
'packages/cap-vite',
'packages/core-agent',
'packages/vishot-runner-browser',
'packages/better-ws',
'packages/plugin-sdk',
'packages/plugin-sdk-tamagotchi',
'packages/server-runtime',
'packages/server-sdk',
'packages/stage-shared',
],
},
})