Files
mattermost/e2e-tests/playwright/tsconfig.json
2023-03-28 18:10:00 +02:00

19 lines
544 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"]
}
},
"include": ["./**/*"],
"exclude": ["playwright-report"]
}