Initial commit
All checks were successful
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m45s

This commit is contained in:
Z User
2026-03-28 15:00:03 +00:00
commit 22dfdb5910
134 changed files with 27218 additions and 0 deletions

17
vitest.config.ts Executable file
View File

@@ -0,0 +1,17 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
environment: 'node',
globals: true,
setupFiles: ['./src/test/setup.ts'],
include: ['src/**/*.{test,spec}.ts'],
coverage: {
reporter: ['text', 'json'],
exclude: [
'node_modules/**',
'src/test/**',
],
},
},
});