Files
mostlymatter/e2e-tests/playwright/tsconfig.json
Saturnino Abril 79e961e239 Playwright/E2E: Upgraded Playwright to 1.41 and fixed tests (#26008)
* upgrade Playwright and fix tests

* fix lint
2024-01-23 20:56:23 +08:00

20 строки
587 B
JSON

{
"compilerOptions": {
"esModuleInterop": true,
"strict": true,
"strictNullChecks": true,
"skipLibCheck": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"@mattermost/client/*": ["../../webapp/platform/client/lib/*"],
"@mattermost/types/*": ["../../webapp/platform/types/lib/*"],
"@e2e-support/*": ["support/*"],
"@e2e-test.config": ["test.config.ts"],
"@e2e-types": ["types.ts"],
},
},
"include": ["./**/*"],
"exclude": ["playwright-report"],
}