feat: rebuild warm operations workbench

This commit is contained in:
Codex
2026-07-30 14:49:33 +08:00
parent 25c853dea8
commit 570edf6bb2
88 changed files with 13413 additions and 2250 deletions
+11
View File
@@ -1,6 +1,17 @@
import { fileURLToPath } from 'node:url';
import { defineConfig } from 'vitest/config';
export default defineConfig({
resolve: {
alias: [
{
find: /^animal-island-ui$/u,
replacement: fileURLToPath(
new URL('./apps/web/node_modules/animal-island-ui/dist/cjs/index.cjs', import.meta.url),
),
},
],
},
test: {
include: ['apps/**/*.test.{ts,tsx}', 'packages/contracts/**/*.test.ts'],
},