first commit

This commit is contained in:
2026-05-22 11:46:43 +02:00
commit 2ebd8fb16b
29 changed files with 3356 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"lib": ["ES2020"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"outDir": "dist",
"rootDir": ".",
"baseUrl": ".",
"paths": {
"@helpers/*": ["helpers/*"]
}
},
"include": ["tests/**/*.ts", "helpers/**/*.ts", "playwright.config.ts"],
"exclude": ["node_modules", "dist", "playwright-report", "test-results"]
}