Files
mostlymatter/e2e-tests/playwright/tsconfig.json
Saturnino Abril 53471c7e8c E2E/Playwright: Upgrade playwright/dependencies and test server config (#26464)
* chore: upgrade playwright and test server config

* add post install script

* update config types

* fix visual test
2024-03-19 08:09:25 +08:00

20 строки
584 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"]
}