Sets up the core infrastructure for Playwright-based automated testing, including: - Docker support for consistent environments - Azure Pipelines configuration for CI/CD - Page Object Model structure for maintainable tests - Test data, validation, and rule engine implementation - Test configuration for alerts and other scenarios
62 lines
No EOL
1.2 KiB
JSON
62 lines
No EOL
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2023",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": false,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"rootDirs": [
|
|
"./impl",
|
|
"./business-logic"
|
|
],
|
|
"paths": {
|
|
"@impl/*": [
|
|
"./impl/*"
|
|
],
|
|
"@api/*": [
|
|
"./impl/api/*"
|
|
],
|
|
"@controller/*": [
|
|
"./impl/api/controller/*"
|
|
],
|
|
"@model/*": [
|
|
"./impl/api/model/*"
|
|
],
|
|
"@gui/*": [
|
|
"./impl/gui/*"
|
|
],
|
|
"@lfm/*": [
|
|
"./impl/gui/lfm/*"
|
|
],
|
|
"@pom/*": [
|
|
"./impl/gui/pom/*"
|
|
],
|
|
"@mixins/*": [
|
|
"./impl/gui/mixins"
|
|
],
|
|
"@business-logic/*": [
|
|
"./business-logic/*"
|
|
],
|
|
"@validations/*": [
|
|
"./business-logic/validations/*"
|
|
],
|
|
"@workflows/*": [
|
|
"./business-logic/workflows/*"
|
|
],
|
|
"@helpers/*": [
|
|
"./helpers/*"
|
|
],
|
|
"@tests/*": [
|
|
"./tests/*"
|
|
],
|
|
"@utils/*": [
|
|
"./impl/utils/*"
|
|
],
|
|
}
|
|
}
|
|
} |