feat: integration tests

This commit is contained in:
Nathnael
2026-08-03 10:51:43 +00:00
parent 6f137a11c3
commit f103b51de5
38 changed files with 7306 additions and 228 deletions

16
integration/tsconfig.json Normal file
View File

@@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022"],
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"types": ["node"]
},
"include": ["src/**/*.ts", "vitest.config.ts"]
}