web-app/tsconfig.playwright.json

27 lines
462 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ES2022",
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"types": [
"node"
],
"outDir": "./dist-playwright",
"rootDir": "."
},
"include": [
"playwright/**/*.ts",
"playwright.config.ts"
],
"exclude": [
"node_modules",
"src",
"e2e",
"cypress"
]
}