20 lines
478 B
JSON
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"]
|
|
}
|