UNPKG

@tshifhiwa/ohrm-ui-automation-framework

Version:

Playwright and TypeScript–based test automation framework for validating core UI features and workflows of the OrangeHRM demo application.

49 lines (42 loc) 1.14 kB
{ "compilerOptions": { /* Language and Environment */ "target": "ES2022", "module": "nodenext", "moduleResolution": "nodenext", "lib": ["esnext", "dom"], /* Interop and Import Behavior */ "esModuleInterop": true, "allowSyntheticDefaultImports": true, "resolveJsonModule": true, "verbatimModuleSyntax": true, /* TypeScript Behavior */ "strict": true, "skipLibCheck": true, "noImplicitAny": true, "forceConsistentCasingInFileNames": true, /* Node / Playwright Support */ "types": ["node", "@playwright/test"], /* Emission & Build */ "declaration": false, "noEmit": true, "sourceMap": true, /* JS Compatibility */ "allowJs": true, "checkJs": false, /* Misc */ "noUncheckedIndexedAccess": true, "exactOptionalPropertyTypes": true }, "include": ["src/**/*.ts", "tests/**/*.ts", "fixtures/**/*.ts", "*.ts"], "exclude": [ "node_modules", "dist", "logs", "downloads", "playwright-report", "ortoni-report", "test-results", "src/testData" ] }