chore: scaffold IdentityDB package tooling

This commit is contained in:
2026-05-11 10:41:48 +09:00
parent bf1495a4d0
commit cadc1b0733
8 changed files with 553 additions and 1 deletions

12
vitest.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
environment: 'node',
globals: true,
passWithNoTests: true,
coverage: {
enabled: false,
},
},
});