Files
autotest/tsconfig.json
T
2026-05-22 11:46:43 +02:00

20 lines
478 B
JSON

{
"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"]
}