Added memory module

This commit is contained in:
Schrody
2026-02-12 17:43:13 +01:00
parent f8e5a8d742
commit 561d858a7f
8 changed files with 1543 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
include: ['**/__tests__/**/*.test.ts'],
coverage: {
provider: 'v8',
include: ['**/*.ts'],
exclude: ['**/__tests__/**', '**/dist/**'],
},
},
});