Initial import of Forge app

This commit is contained in:
2026-08-29 12:30:19 +03:00
commit e637634c59
118 changed files with 17355 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { defineConfig, configDefaults } from 'vitest/config';
export default defineConfig({
test: {
environment: 'node',
include: ['server/**/*.{test,spec}.ts'],
exclude: [...configDefaults.exclude, '**/._*'],
pool: 'forks',
poolOptions: { forks: { singleFork: true } },
},
});