feat(serializer): add aot serializer

This commit is contained in:
2026-05-21 09:11:51 +00:00
parent 6f417ba514
commit f327e64a6a
30 changed files with 6720 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
// Standalone config — don't search upward for vite.config in parent dirs.
configFile: false,
test: {
include: ['test/**/*.test.ts'],
environment: 'node',
globals: false,
benchmark: {
include: ['test/**/*.bench.ts'],
},
},
});