chore: add code quality tooling

This commit is contained in:
MythEclipse
2026-05-13 15:20:43 +07:00
parent 29cb2c20c6
commit 2676998411
3 changed files with 31 additions and 2 deletions
+8
View File
@@ -0,0 +1,8 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
environment: 'node',
include: ['tests/**/*.test.ts']
}
});